source: bootcd/isolinux/syslinux-6.03/gpxe/src/include/usr/autoboot.h @ dd1be7c

Last change on this file since dd1be7c was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 498 bytes
Line 
1#ifndef _USR_AUTOBOOT_H
2#define _USR_AUTOBOOT_H
3
4/** @file
5 *
6 * Automatic booting
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER );
11
12#include <gpxe/in.h>
13struct net_device;
14
15extern int shutdown_exit_flags;
16
17extern void autoboot ( void );
18extern int boot_next_server_and_filename ( struct in_addr next_server,
19                                           const char *filename );
20extern int boot_root_path ( const char *root_path );
21
22extern int pxe_menu_boot ( struct net_device *netdev )
23        __attribute__ (( weak ));
24
25#endif /* _USR_AUTOBOOT_H */
Note: See TracBrowser for help on using the repository browser.