Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

kkkpxeprefix.S 659B

12345678910111213141516171819
  1. /*****************************************************************************
  2. * PXE prefix that keeps the whole PXE stack present and provides an exit hook
  3. *
  4. * This prefix is essentially intended solely for the case of ipxelinux.0
  5. *****************************************************************************
  6. */
  7. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
  8. /* Since we have the whole stack, we can use cached DHCP information */
  9. REQUIRE_OBJECT ( pxeparent_dhcp )
  10. /* Provide the PXENV_FILE_EXIT_HOOK API call */
  11. REQUIRE_OBJECT ( pxe_exit_hook )
  12. #define PXELOADER_KEEP_UNDI
  13. #define PXELOADER_KEEP_PXE
  14. #define _pxe_start _kkkpxe_start
  15. #include "pxeprefix.S"