public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms][PATCH v1 0/1] BoardModulePkg: Fix Boot0000 got overwritten
@ 2022-06-23  6:58 JamesWang [王家明]
  2022-06-23  6:58 ` [PATCH v1 1/1] " JamesWang [王家明]
  0 siblings, 1 reply; 2+ messages in thread
From: JamesWang [王家明] @ 2022-06-23  6:58 UTC (permalink / raw)
  To: devel@edk2.groups.io

A simple fix to avoid overwrtiing Boot0000 when mBootMenuFile is not found.

James Wang (1):
  BoardModulePkg: Fix Boot0000 got overwritten

 Platform/Intel/BoardModulePkg/Library/BoardBdsHookLib/BoardBootOption.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

--
2.13.2.windows.1
-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH v1 1/1] BoardModulePkg: Fix Boot0000 got overwritten
  2022-06-23  6:58 [edk2-platforms][PATCH v1 0/1] BoardModulePkg: Fix Boot0000 got overwritten JamesWang [王家明]
@ 2022-06-23  6:58 ` JamesWang [王家明]
  0 siblings, 0 replies; 2+ messages in thread
From: JamesWang [王家明] @ 2022-06-23  6:58 UTC (permalink / raw)
  To: devel@edk2.groups.io; +Cc: Eric Dong, Isaac Oram, Liming Gao

REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3522

Boot0000 will be overwritten when F7 is pressed and
Boot Menu is not found.
Check if mBootMenuOptionNumber is valid or not
before calling RegisterBootOptionHotkey

Cc: Eric Dong <eric.dong@intel.com>
Cc: Isaac Oram <isaac.w.oram@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: James Wang <jameswang@ami.com>
---
 Platform/Intel/BoardModulePkg/Library/BoardBdsHookLib/BoardBootOption.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/Platform/Intel/BoardModulePkg/Library/BoardBdsHookLib/BoardBootOption.c b/Platform/Intel/BoardModulePkg/Library/BoardBdsHookLib/BoardBootOption.c
index 6e3c21f4f052..8807d9425e50 100644
--- a/Platform/Intel/BoardModulePkg/Library/BoardBdsHookLib/BoardBootOption.c
+++ b/Platform/Intel/BoardModulePkg/Library/BoardBdsHookLib/BoardBootOption.c
@@ -461,12 +461,18 @@ RegisterStaticHotkey (
     RegisterBootOptionHotkey ((UINT16) mSetupOptionNumber, &F2.Key, TRUE);
   }

-  F7.Key.ScanCode    = SCAN_F7;
-  F7.Key.UnicodeChar = CHAR_NULL;
-  F7.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID;
-  F7.KeyState.KeyToggleState = 0;
-  mBootMenuBoot  = !EnterSetup;
-  RegisterBootOptionHotkey ((UINT16) mBootMenuOptionNumber, &F7.Key, mBootMenuBoot);
+  //
+  // Register F7 only when the mBootMenuOptionNumber is valid
+  //
+  if (mBootMenuOptionNumber != LoadOptionNumberUnassigned)
+  {
+    F7.Key.ScanCode    = SCAN_F7;
+    F7.Key.UnicodeChar = CHAR_NULL;
+    F7.KeyState.KeyShiftState = EFI_SHIFT_STATE_VALID;
+    F7.KeyState.KeyToggleState = 0;
+    mBootMenuBoot  = !EnterSetup;
+    RegisterBootOptionHotkey ((UINT16) mBootMenuOptionNumber, &F7.Key, mBootMenuBoot);
+  }

 }

--
2.13.2.windows.1
-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-23  6:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-23  6:58 [edk2-platforms][PATCH v1 0/1] BoardModulePkg: Fix Boot0000 got overwritten JamesWang [王家明]
2022-06-23  6:58 ` [PATCH v1 1/1] " JamesWang [王家明]

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox