mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
Merge 2f6f9fe47b into 2970e5699b
This commit is contained in:
commit
4962a827e6
2 changed files with 6 additions and 0 deletions
|
|
@ -332,6 +332,7 @@ BdsWait (
|
|||
if (HotkeyTriggered != NULL) {
|
||||
Status = BdsWaitForSingleEvent (HotkeyTriggered, EFI_TIMER_PERIOD_SECONDS (1));
|
||||
if (!EFI_ERROR (Status)) {
|
||||
TimeoutRemain = 0;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -383,6 +383,11 @@ PlatformBootManagerWaitCallback (
|
|||
UINT16 TimeoutRemain
|
||||
)
|
||||
{
|
||||
/* Clear text from screen once timeout expires */
|
||||
if (TimeoutRemain == 0) {
|
||||
gST->ConOut->ClearScreen (gST->ConOut);
|
||||
BootLogoEnableLogo ();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue