mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/UefiPxeBcDxe: Fix the PXE BootMenu selection issue
Currently implementation doesn't accept the input during the user is trying to select the PXE BootMenu from option 43. This path is to fix that problem. Cc: Ye Ting <ting.ye@intel.com> Cc: Fu Siyuan <siyuan.fu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com> Reviewed-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
This commit is contained in:
parent
7ec69844b8
commit
ef931b311f
|
@ -2,7 +2,7 @@
|
|||
Support for PxeBc dhcp functions.
|
||||
|
||||
Copyright (c) 2013, Red Hat, Inc.
|
||||
Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -1845,7 +1845,7 @@ PxeBcSelectBootMenu (
|
|||
PXEBC_BOOT_MENU_ENTRY *MenuArray[PXEBC_MAX_MENU_NUM];
|
||||
|
||||
Finish = FALSE;
|
||||
Select = 1;
|
||||
Select = 0;
|
||||
Index = 0;
|
||||
*Type = 0;
|
||||
|
||||
|
@ -1914,7 +1914,7 @@ PxeBcSelectBootMenu (
|
|||
gBS->Stall (10 * TICKS_PER_MS);
|
||||
}
|
||||
|
||||
if (InputKey.ScanCode != 0) {
|
||||
if (InputKey.ScanCode == 0) {
|
||||
switch (InputKey.UnicodeChar) {
|
||||
case CTRL ('c'):
|
||||
InputKey.ScanCode = SCAN_ESC;
|
||||
|
|
Loading…
Reference in New Issue