blob: d7fb2e1fb6291be6af59c9bf38a9a8d5f4cd820f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include <vsprintf.h>
#include <gpxe/command.h>
#include <usr/autoboot.h>
static int autoboot_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 autoboot_command __command = {
.name = "autoboot",
.exec = autoboot_exec,
};
|