From: oliviermartin Date: Thu, 27 Sep 2012 15:33:10 +0000 (+0000) Subject: ArmPlatformPkg/Bds: Replaced 'EBL' by 'UEFI Shell' as the default shell on ARM Platforms X-Git-Tag: edk2-stable201903~13021 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=8213627ef73ea5cac96c9eaeaed8dd8169ec3431 ArmPlatformPkg/Bds: Replaced 'EBL' by 'UEFI Shell' as the default shell on ARM Platforms Signed-off-by: Olivier Martin git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13759 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/ArmPlatformPkg/Bds/BootMenu.c b/ArmPlatformPkg/Bds/BootMenu.c index ecd1d60f40..c2b91b8bad 100644 --- a/ArmPlatformPkg/Bds/BootMenu.c +++ b/ArmPlatformPkg/Bds/BootMenu.c @@ -571,14 +571,14 @@ BootMenuManager ( } EFI_STATUS -BootEBL ( +BootShell ( IN LIST_ENTRY *BootOptionsList ) { EFI_STATUS Status; // Start EFI Shell - Status = BdsLoadApplication (mImageHandle, L"Ebl", 0, NULL); + Status = BdsLoadApplication (mImageHandle, L"Shell", 0, NULL); if (Status == EFI_NOT_FOUND) { Print (L"Error: EFI Application not found.\n"); } else if (EFI_ERROR(Status)) { @@ -592,7 +592,7 @@ struct BOOT_MAIN_ENTRY { CONST CHAR16* Description; EFI_STATUS (*Callback) (IN LIST_ENTRY *BootOptionsList); } BootMainEntries[] = { - { L"EBL", BootEBL }, + { L"Shell", BootShell }, { L"Boot Manager", BootMenuManager }, };