diff mbox

[6/9] ArmPlatformPkg/Bds: use letters for hard coded boot menu options

Message ID 1371801922-15142-7-git-send-email-ryan.harkin@linaro.org
State New
Headers show

Commit Message

Ryan Harkin June 21, 2013, 8:05 a.m. UTC
The main menu in the Boot Manager numbers all the menu options.

As you add a new boot device, the hard coded menu option numbers increment.
This makes automated configuration of UEFI more complex.

This patch changes the hard coded menu options to use letters instead of
numbers.  For backwards compatibility, I've left the numbering support in.
However, I've re-ordered the Ebl and Boot Manager entries, so the default
number for the Boot Manager option is now 2, not 3.

Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
---
 ArmPlatformPkg/Bds/BootMenu.c |   17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/ArmPlatformPkg/Bds/BootMenu.c b/ArmPlatformPkg/Bds/BootMenu.c
index 1b101d4..4094d41 100644
--- a/ArmPlatformPkg/Bds/BootMenu.c
+++ b/ArmPlatformPkg/Bds/BootMenu.c
@@ -618,8 +618,8 @@  struct BOOT_MAIN_ENTRY {
   CONST CHAR16* Description;
   EFI_STATUS (*Callback) (IN LIST_ENTRY *BootOptionsList);
 } BootMainEntries[] = {
-    { L"Shell", BootShell },
     { L"Boot Manager", BootMenuManager },
+    { L"Shell", BootShell },
 };
 
 
@@ -630,6 +630,7 @@  BootMenuMain (
 {
   LIST_ENTRY                    BootOptionsList;
   UINTN                         OptionCount;
+  UINTN                         HardCodedOptionCount;
   UINTN                         BootOptionCount;
   EFI_STATUS                    Status;
   LIST_ENTRY*                   Entry;
@@ -637,6 +638,7 @@  BootMenuMain (
   UINTN                         BootOptionSelected;
   UINTN                         Index;
   UINTN                         BootMainEntryCount;
+  CHAR8                         BootOptionSelectedStr[32];
 
   BootOption              = NULL;
   BootMainEntryCount = sizeof(BootMainEntries) / sizeof(struct BOOT_MAIN_ENTRY);
@@ -713,16 +715,25 @@  BootMenuMain (
     BootOptionCount = OptionCount-1;
 
     // Display the hardcoded Boot entries
+    Print(L"-----------------------\n");
     for (Index = 0; Index < BootMainEntryCount; Index++) {
-      Print(L"[%d] %s\n",OptionCount,BootMainEntries[Index]);
+      Print(L"[%c] %s\n", ('a'+Index), BootMainEntries[Index]);
       OptionCount++;
     }
+    HardCodedOptionCount=Index;
 
     // Request the boot entry from the user
     BootOptionSelected = 0;
     while (BootOptionSelected == 0) {
       Print(L"Start: ");
-      Status = GetHIInputInteger (&BootOptionSelected);
+      Status = GetHIInputAscii (BootOptionSelectedStr,8);
+
+      if (BootOptionSelectedStr[0]-'0' <= OptionCount) {
+        BootOptionSelected = BootOptionSelectedStr[0] - '0';
+      } else if (BootOptionSelectedStr[0]-'a' <= HardCodedOptionCount) {
+        BootOptionSelected = BootOptionCount + 1 + BootOptionSelectedStr[0] - 'a';
+      }
+
       if (EFI_ERROR(Status) || (BootOptionSelected == 0) || (BootOptionSelected > OptionCount)) {
         Print(L"Invalid input (max %d)\n",(OptionCount-1));
         BootOptionSelected = 0;