summaryrefslogtreecommitdiffstats
path: root/src/hci/commands/autoboot_cmd.c
blob: 17bd6bcfcdd45a53f7ed450139bea2c194d765b2 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <stdio.h>
#include <ipxe/command.h>
#include <ipxe/netdevice.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;
}

static int netboot_exec ( int argc, char **argv ) {
	const char *netdev_name;
	struct net_device *netdev;

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

	netdev = find_netdev ( netdev_name );
	if ( ! netdev ) {
		printf ( "%s: no such interface\n", netdev_name );
		return 1;
	}

	netboot ( netdev );

	/* Can never return success by definition */
	return 1;
}

struct command autoboot_commands[] __command = {
	{
		.name = "autoboot",
		.exec = autoboot_exec,
	},
	{
		.name = "netboot",
		.exec = netboot_exec,
	},
};