* [PATCH] MdeModulePkg/BmBoot: skip secondary eMMC entries
@ 2022-01-28 21:35 Sean Rhodes
0 siblings, 0 replies; only message in thread
From: Sean Rhodes @ 2022-01-28 21:35 UTC (permalink / raw)
To: devel; +Cc: Matt DeVillier
From: Matt DeVillier <matt.devillier@gmail.com>
Internal eMMC devices often show multiple entries, so skip
any after the initial entry.
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
---
MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
index 962892d38f..f7da5bcdfc 100644
--- a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
+++ b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
@@ -2175,12 +2175,14 @@ BmEnumerateBootOptions (
EFI_BLOCK_IO_PROTOCOL *BlkIo;
UINTN Removable;
UINTN Index;
+ UINTN EmmcCount;
CHAR16 *Description;
ASSERT (BootOptionCount != NULL);
*BootOptionCount = 0;
BootOptions = NULL;
+ EmmcCount = 0;
//
// Parse removable block io followed by fixed block io
@@ -2219,6 +2221,17 @@ BmEnumerateBootOptions (
}
Description = BmGetBootDescription (Handles[Index]);
+
+ //
+ // Skip secondary entries for internal eMMC devices
+ //
+ if (StrCmp(Description, L"eMMC Device") == 0) {
+ EmmcCount++;
+ if (EmmcCount > 1) {
+ continue;
+ }
+ }
+
BootOptions = ReallocatePool (
sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount),
sizeof (EFI_BOOT_MANAGER_LOAD_OPTION) * (*BootOptionCount + 1),
--
2.32.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-01-28 21:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-28 21:35 [PATCH] MdeModulePkg/BmBoot: skip secondary eMMC entries Sean Rhodes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox