projects
/
petitboot
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
ddb9e7dc367539343e09cb28d321388c5fecb452
[petitboot]
/
discover
/
boot.c
1
2
#include "boot.h"
3
4
int boot(void *ctx, struct boot_option *opt, struct boot_command *cmd,
5
int dry_run)
6
{
7
/* todo: run kexec with options from opt & cmd */
8
(void)ctx;
9
(void)opt;
10
(void)cmd;
11
(void)dry_run;
12
13
return 0;
14
}