summaryrefslogblamecommitdiffstats
path: root/src/hci/commands/autoboot_cmd.c
blob: 0e6f2948dc8b50a3d7eefaf370efb6b8e5f2f3d7 (plain) (tree)
1
2
3
4
5
6
7
                  
                         
                         
 
                                                    

                          




                                                         




                         

                                                    

 


                                             
  
#include <stdio.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,
};