feat(bootloader-interface): add support for marking when the menu is being display

This commit is contained in:
2025-10-30 13:27:58 -04:00
parent cc90199d61
commit 9d3a022e08
3 changed files with 18 additions and 2 deletions

View File

@@ -285,7 +285,8 @@ fn run() -> Result<()> {
.context(format!("unable to find entry: {force_boot_entry}"))?
} else {
// Delegate to the menu to select an entry to boot.
menu::select(menu_timeout, &entries).context("unable to select entry via boot menu")?
menu::select(&timer, menu_timeout, &entries)
.context("unable to select entry via boot menu")?
};
// Tell the bootloader interface what the selected entry is.