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
This commit is contained in:
oliviermartin 2012-09-27 15:33:10 +00:00
parent e1772adfef
commit 8213627ef7
1 changed files with 3 additions and 3 deletions

View File

@ -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 },
};