Adding debian version 3.70~pre8+dfsg-1.
[syslinux-debian/hramrach.git] / gpxe / src / hci / commands / autoboot_cmd.c
blob0e6f2948dc8b50a3d7eefaf370efb6b8e5f2f3d7
1 #include <stdio.h>
2 #include <gpxe/command.h>
3 #include <usr/autoboot.h>
5 static int autoboot_exec ( int argc, char **argv ) {
7 if ( argc != 1 ) {
8 printf ( "Usage:\n"
9 " %s\n"
10 "\n"
11 "Attempts to boot the system\n",
12 argv[0] );
13 return 1;
16 autoboot();
18 /* Can never return success by definition */
19 return 1;
22 struct command autoboot_command __command = {
23 .name = "autoboot",
24 .exec = autoboot_exec,