feat(bootloader-interface): implement support for LoaderImageIdentifier

This commit is contained in:
2025-10-30 12:44:07 -04:00
parent d2bef03437
commit cff55322fc
2 changed files with 25 additions and 7 deletions

View File

@@ -112,6 +112,10 @@ fn run() -> Result<()> {
.context("unable to set partition guid in bootloader interface")?;
}
// Tell the bootloader interface what the loaded image path is.
BootloaderInterface::set_loader_path(&loaded_image_path)
.context("unable to set loader path in bootloader interface")?;
// Create the root context.
let mut root = RootContext::new(loaded_image_path, timer, options);