diff options
Diffstat (limited to 'contrib/syslinux-4.02/gpxe/src/hci/commands/autoboot_cmd.c')
-rw-r--r-- | contrib/syslinux-4.02/gpxe/src/hci/commands/autoboot_cmd.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/gpxe/src/hci/commands/autoboot_cmd.c b/contrib/syslinux-4.02/gpxe/src/hci/commands/autoboot_cmd.c new file mode 100644 index 0000000..95b172d --- /dev/null +++ b/contrib/syslinux-4.02/gpxe/src/hci/commands/autoboot_cmd.c @@ -0,0 +1,27 @@ +#include <stdio.h> +#include <gpxe/command.h> +#include <usr/autoboot.h> + +FILE_LICENCE ( GPL2_OR_LATER ); + +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, +}; |