summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2015-06-17 08:55:06 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2015-06-17 12:58:13 +0100
commit2f049b586e40cc191925a77c8b26fb0c957ce52b (patch)
treef12b6a9b4bd7d1009b2c2974cd6c5b9bca8ea932
parent6a66531ba52153d6965cee4dab4b1ebd6c6c6358 (diff)
ArmPlatformPkg/Bds: remove extra menu options
A couple of useful menu options were added to the BDS Boot Manager menu, however, these re-order items and break LAVA. As a short term fix, it's easier to get the latest code adopted in LAVA if there are no breaks, so this patch removes these extra options. Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
-rw-r--r--ArmPlatformPkg/Bds/BootMenu.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ArmPlatformPkg/Bds/BootMenu.c b/ArmPlatformPkg/Bds/BootMenu.c
index c45d8f184..25247f3ca 100644
--- a/ArmPlatformPkg/Bds/BootMenu.c
+++ b/ArmPlatformPkg/Bds/BootMenu.c
@@ -724,6 +724,7 @@ EXIT:
return Status;
}
+#if 0 // Remove extra menu options
/**
Reorder boot options
@@ -928,6 +929,7 @@ BootMenuSetBootTimeout (
ErrorExit:
return Status;
}
+#endif // Remove extra menu options
struct BOOT_MANAGER_ENTRY {
CONST CHAR16* Description;
@@ -937,8 +939,10 @@ struct BOOT_MANAGER_ENTRY {
{ L"Update Boot Device Entry", BootMenuUpdateBootOption },
{ L"Remove Boot Device Entry", BootMenuRemoveBootOption },
{ L"Update FDT path", UpdateFdtPath },
+#if 0 // Remove extra menu options
{ L"Reorder Boot Device Entries", BootMenuReorderBootOptions },
{ L"Set Boot Timeout", BootMenuSetBootTimeout },
+#endif // Remove extra menu options
};
EFI_STATUS