mirror of
https://github.com/xcat2/xNBA.git
synced 2025-04-23 05:15:53 +00:00
26 lines
413 B
C
26 lines
413 B
C
#include <vsprintf.h>
|
|
#include <gpxe/command.h>
|
|
#include <usr/autoboot.h>
|
|
|
|
static int boot_exec ( int argc, char **argv ) {
|
|
|
|
if ( argc != 1 ) {
|
|
printf ( "Usage:\n"
|
|
" %s\n"
|
|
"\n"
|
|
"Attempts to boot the system\n",
|
|
argv[0] );
|
|
return 1;
|
|
}
|
|
|
|
autoboot();
|
|
|
|
/* Can never return success by definition */
|
|
return 1;
|
|
}
|
|
|
|
struct command boot_command __command = {
|
|
.name = "boot",
|
|
.exec = boot_exec,
|
|
};
|