We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ec04d commit f58dfadCopy full SHA for f58dfad
MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
@@ -2082,6 +2082,11 @@ EfiBootManagerBoot (
2082
if (BmIsBootManagerMenuFilePath (BootOption->FilePath)) {
2083
DEBUG ((DEBUG_INFO, "[Bds] Booting Boot Manager Menu.\n"));
2084
BmStopHotkeyService (NULL, NULL);
2085
+ } else if (BmIsSovereignBootWizardFilePath (BootOption->FilePath)) {
2086
+ // Avoid signaling ReadyToBoot, as the wizard may call EfiBootManagerBoot
2087
+ // with a proper boot option.
2088
+ DEBUG ((DEBUG_INFO, "[Bds] Booting Sovereign Boot Wizard.\n"));
2089
+ BmStopHotkeyService (NULL, NULL);
2090
} else {
2091
EfiSignalEventReadyToBoot ();
2092
//
0 commit comments