mirror of https://github.com/acidanthera/audk.git
Enhance SetupBrowser to call ReadKeyStroke() before calling WaitForEvent(). This can handle the case when the UI is launched in lazy ConIn mode.
Signed-off-by: Ruiyu Ni<ruiyu.ni@intel.com> Reviewed-by: Eric Dong<eric.dong@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13942 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
467cacbf77
commit
9cdadb7c94
|
@ -1384,10 +1384,17 @@ WaitForKeyStroke (
|
|||
{
|
||||
EFI_STATUS Status;
|
||||
|
||||
do {
|
||||
UiWaitForSingleEvent (gST->ConIn->WaitForKey, 0, 0);
|
||||
while (TRUE) {
|
||||
Status = gST->ConIn->ReadKeyStroke (gST->ConIn, Key);
|
||||
} while (EFI_ERROR(Status));
|
||||
if (!EFI_ERROR (Status)) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (Status != EFI_NOT_READY) {
|
||||
continue;
|
||||
}
|
||||
|
||||
UiWaitForSingleEvent (gST->ConIn->WaitForKey, 0, 0);
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
|
|
@ -3110,25 +3110,33 @@ UiDisplayMenu (
|
|||
//
|
||||
// Wait for user's selection
|
||||
//
|
||||
do {
|
||||
Status = UiWaitForSingleEvent (gST->ConIn->WaitForKey, 0, MinRefreshInterval);
|
||||
} while (Status == EFI_TIMEOUT);
|
||||
while (TRUE) {
|
||||
Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (Selection->Action == UI_ACTION_REFRESH_FORMSET) {
|
||||
//
|
||||
// IFR is updated in Callback of refresh opcode, re-parse it
|
||||
// If we encounter error, continue to read another key in.
|
||||
//
|
||||
ControlFlag = CfCheckSelection;
|
||||
Selection->Statement = NULL;
|
||||
break;
|
||||
if (Status != EFI_NOT_READY) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Status = UiWaitForSingleEvent (gST->ConIn->WaitForKey, 0, MinRefreshInterval);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
if (Selection->Action == UI_ACTION_REFRESH_FORMSET) {
|
||||
//
|
||||
// IFR is updated in Callback of refresh opcode, re-parse it
|
||||
//
|
||||
ControlFlag = CfCheckSelection;
|
||||
Selection->Statement = NULL;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
|
||||
//
|
||||
// If we encounter error, continue to read another key in.
|
||||
//
|
||||
if (EFI_ERROR (Status)) {
|
||||
ControlFlag = CfReadKey;
|
||||
if (ControlFlag == CfCheckSelection) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue