david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/hci/commands/boot_cmd.c
2007-01-10 02:03:20 +00:00

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,
};