00001 #ifndef _USR_AUTOBOOT_H 00002 #define _USR_AUTOBOOT_H 00003 00004 /** @file 00005 * 00006 * Automatic booting 00007 * 00008 */ 00009 00010 FILE_LICENCE ( GPL2_OR_LATER ); 00011 00012 #include <gpxe/in.h> 00013 struct net_device; 00014 00015 extern int shutdown_exit_flags; 00016 00017 extern void autoboot ( void ); 00018 extern int boot_next_server_and_filename ( struct in_addr next_server, 00019 const char *filename ); 00020 extern int boot_root_path ( const char *root_path ); 00021 00022 extern int pxe_menu_boot ( struct net_device *netdev ) 00023 __attribute__ (( weak )); 00024 00025 #endif /* _USR_AUTOBOOT_H */
1.5.7.1