The original BdsDxe driver has "Enter Setup" status code while current code not. This patch restores it.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Eric Dong <[email protected]> Cc: Liming Gao <[email protected]> --- MdeModulePkg/Application/UiApp/FrontPage.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/MdeModulePkg/Application/UiApp/FrontPage.c b/MdeModulePkg/Application/UiApp/FrontPage.c index 8efe4d1..e1a1d05 100644 --- a/MdeModulePkg/Application/UiApp/FrontPage.c +++ b/MdeModulePkg/Application/UiApp/FrontPage.c @@ -982,6 +982,14 @@ UiEntry ( EFI_BOOT_LOGO_PROTOCOL *BootLogo; // + // Enter Setup page. + // + REPORT_STATUS_CODE ( + EFI_PROGRESS_CODE, + (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_PC_USER_SETUP) + ); + + // // Indicate if the connect all has been performed before. // if (ConnectAllHappened) { -- 2.6.4.windows.1 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

