summaryrefslogtreecommitdiffstats
path: root/src/hci/commands/boot_cmd.c
blob: 0681ec54d6329f428a063f505affcfa989ebef89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <vsprintf.h>
#include <gpxe/command.h>
#include <gpxe/autoboot.h>

static int boot_exec ( int argc, char **argv ) {

	if ( argc != 1 ) {
		printf ( "Usage: %s\n"
			 "Attempts to boot the system\n", argv[0] );
		return 1;
	}

	autoboot();

	return 0;
}

struct command boot_command __command = {
	.name = "boot",
	.exec = boot_exec,
};