2007-01-10 02:03:20 +00:00
|
|
|
#ifndef _USR_AUTOBOOT_H
|
|
|
|
|
#define _USR_AUTOBOOT_H
|
|
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* Automatic booting
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2009-05-01 15:41:06 +01:00
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
|
|
2009-01-31 07:36:05 +00:00
|
|
|
#include <gpxe/in.h>
|
|
|
|
|
struct net_device;
|
|
|
|
|
|
2008-07-17 17:45:17 +01:00
|
|
|
extern int shutdown_exit_flags;
|
|
|
|
|
|
2007-01-10 02:03:20 +00:00
|
|
|
extern void autoboot ( void );
|
2009-01-31 07:36:05 +00:00
|
|
|
extern int boot_next_server_and_filename ( struct in_addr next_server,
|
|
|
|
|
const char *filename );
|
2008-03-04 17:59:26 +00:00
|
|
|
extern int boot_root_path ( const char *root_path );
|
2009-01-31 07:36:05 +00:00
|
|
|
extern int pxe_menu_boot ( struct net_device *netdev );
|
2007-01-10 02:03:20 +00:00
|
|
|
|
|
|
|
|
#endif /* _USR_AUTOBOOT_H */
|