This commit is contained in:
Sean Rhodes 2026-08-13 06:40:49 -07:00 committed by GitHub
commit 4962a827e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -332,6 +332,7 @@ BdsWait (
if (HotkeyTriggered != NULL) {
Status = BdsWaitForSingleEvent (HotkeyTriggered, EFI_TIMER_PERIOD_SECONDS (1));
if (!EFI_ERROR (Status)) {
TimeoutRemain = 0;
break;
}
} else {

View file

@ -383,6 +383,11 @@ PlatformBootManagerWaitCallback (
UINT16 TimeoutRemain
)
{
/* Clear text from screen once timeout expires */
if (TimeoutRemain == 0) {
gST->ConOut->ClearScreen (gST->ConOut);
BootLogoEnableLogo ();
}
return;
}