]> git.ozlabs.org Git - petitboot/blob - discover/boot.c
discover: Implement device handler boot path
[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 }