summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2012-09-27 15:33:10 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2012-09-27 15:33:10 +0000
commit8213627ef73ea5cac96c9eaeaed8dd8169ec3431 (patch)
tree019d568a5822f0feb4bd204f50ea1f427004785f
parente1772adfef242ed7ddb748c8ac97aa4a5c6c6470 (diff)
downloadedk2-8213627ef73ea5cac96c9eaeaed8dd8169ec3431.tar.gz
edk2-8213627ef73ea5cac96c9eaeaed8dd8169ec3431.tar.bz2
edk2-8213627ef73ea5cac96c9eaeaed8dd8169ec3431.zip
ArmPlatformPkg/Bds: Replaced 'EBL' by 'UEFI Shell' as the default shell on ARM Platforms
Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13759 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--ArmPlatformPkg/Bds/BootMenu.c6
1 files changed, 3 insertions, 3 deletions
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 },
};