Split the (quick hack) boot logic out from main.c to autoboot.c, add a

"boot" command to attempt booting from within the command shell, fall back
to shell if boot fails for any reason.
This commit is contained in:
Michael Brown
2006-12-20 07:04:08 +00:00
parent 9ab17484d0
commit 84202d89f0
7 changed files with 85 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
#ifndef _GPXE_AUTOBOOT_H
#define _GPXE_AUTOBOOT_H
/** @file
*
* Automatic booting
*
*/
extern void autoboot ( void );
#endif /* _GPXE_AUTOBOOT_H */