Support RouteConfig function for BdsDxe driver.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Gao, Liming <liming,gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15563 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -1144,6 +1144,12 @@ PlatformBdsEnterFrontPage (
|
||||
BootLogo->SetBootLogo (BootLogo, NULL, 0, 0, 0, 0);
|
||||
}
|
||||
|
||||
//
|
||||
// Install BM HiiPackages.
|
||||
// Keep BootMaint HiiPackage, so that it can be covered by global setting.
|
||||
//
|
||||
InitBMPackage ();
|
||||
|
||||
Status = EFI_SUCCESS;
|
||||
do {
|
||||
//
|
||||
@ -1199,10 +1205,20 @@ PlatformBdsEnterFrontPage (
|
||||
break;
|
||||
|
||||
case FRONT_PAGE_KEY_BOOT_MANAGER:
|
||||
//
|
||||
// Remove the installed BootMaint HiiPackages when exit.
|
||||
//
|
||||
FreeBMPackage ();
|
||||
|
||||
//
|
||||
// User chose to run the Boot Manager
|
||||
//
|
||||
CallBootManager ();
|
||||
|
||||
//
|
||||
// Reinstall BootMaint HiiPackages after exiting from Boot Manager.
|
||||
//
|
||||
InitBMPackage ();
|
||||
break;
|
||||
|
||||
case FRONT_PAGE_KEY_DEVICE_MANAGER:
|
||||
@ -1233,6 +1249,11 @@ PlatformBdsEnterFrontPage (
|
||||
//
|
||||
SetupResetReminder ();
|
||||
|
||||
//
|
||||
// Remove the installed BootMaint HiiPackages when exit.
|
||||
//
|
||||
FreeBMPackage ();
|
||||
|
||||
Exit:
|
||||
//
|
||||
// Automatically load current entry
|
||||
|
Reference in New Issue
Block a user