bootctl: Initial experimentation

This provides a basic prototype for boot control.

Some documentation is in boot/bootctl/README.rst
This commit is contained in:
Simon Glass
2025-03-14 07:47:28 +00:00
parent 8bae99245b
commit d9152ea75e
30 changed files with 3371 additions and 4 deletions

View File

@@ -50,6 +50,7 @@ static int do_ut_info(bool show_suites);
SUITE_DECL(addrmap);
SUITE_DECL(bdinfo);
SUITE_DECL(bloblist);
SUITE_DECL(bootctl);
SUITE_DECL(bootm);
SUITE_DECL(bootstd);
SUITE_DECL(cmd);
@@ -77,6 +78,7 @@ static struct suite suites[] = {
SUITE(addrmap, "very basic test of addrmap command"),
SUITE(bdinfo, "bdinfo (board info) command"),
SUITE(bloblist, "bloblist implementation"),
SUITE(bootctl, "bootctl (boot schema)"),
SUITE(bootm, "bootm command"),
SUITE(bootstd, "standard boot implementation"),
SUITE(cmd, "various commands"),