Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

autoboot.h 438B

123456789101112131415161718192021
  1. #ifndef _USR_AUTOBOOT_H
  2. #define _USR_AUTOBOOT_H
  3. /** @file
  4. *
  5. * Automatic booting
  6. *
  7. */
  8. #include <gpxe/in.h>
  9. struct net_device;
  10. extern int shutdown_exit_flags;
  11. extern void autoboot ( void );
  12. extern int boot_next_server_and_filename ( struct in_addr next_server,
  13. const char *filename );
  14. extern int boot_root_path ( const char *root_path );
  15. extern int pxe_menu_boot ( struct net_device *netdev );
  16. #endif /* _USR_AUTOBOOT_H */