feat(bootloader-interface): identify ourselves as sprout

This commit is contained in:
2025-10-30 12:50:36 -04:00
parent cff55322fc
commit cc90199d61
2 changed files with 12 additions and 0 deletions

View File

@@ -76,6 +76,10 @@ fn run() -> Result<()> {
BootloaderInterface::set_firmware_info()
.context("unable to set firmware info in bootloader interface")?;
// Tell the bootloader interface what loader is being used.
BootloaderInterface::set_loader_info()
.context("unable to set loader info in bootloader interface")?;
// Parse the options to the sprout executable.
let options = SproutOptions::parse().context("unable to parse options")?;