summaryrefslogtreecommitdiffstats
path: root/discover/boot.c
blob: ddb9e7dc367539343e09cb28d321388c5fecb452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include "boot.h"

int boot(void *ctx, struct boot_option *opt, struct boot_command *cmd,
		int dry_run)
{
	/* todo: run kexec with options from opt & cmd */
	(void)ctx;
	(void)opt;
	(void)cmd;
	(void)dry_run;

	return 0;
}
OpenPOWER on IntegriCloud