From a0d1206f845f71fbe27adb5958d285e2a901f260 Mon Sep 17 00:00:00 2001 From: Dandan Bi Date: Mon, 6 Jun 2016 11:01:55 +0800 Subject: MdeModulePkg/UiApp: Connect all devices in UiApp if needed If the connect all action has not been performed before. We do it in UiApp now. Cc: Liming Gao Cc: Eric Dong Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi Reviewed-by: Eric Dong Reviewed-by: Liming Gao --- MdeModulePkg/Application/UiApp/FrontPage.c | 6 +++--- MdeModulePkg/Application/UiApp/FrontPage.h | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) (limited to 'MdeModulePkg/Application/UiApp') diff --git a/MdeModulePkg/Application/UiApp/FrontPage.c b/MdeModulePkg/Application/UiApp/FrontPage.c index 1c0afa5..d1372d3 100644 --- a/MdeModulePkg/Application/UiApp/FrontPage.c +++ b/MdeModulePkg/Application/UiApp/FrontPage.c @@ -19,7 +19,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. EFI_GUID mFrontPageGuid = FRONT_PAGE_FORMSET_GUID; -BOOLEAN gConnectAllHappened = FALSE; BOOLEAN mFeaturerSwitch = TRUE; BOOLEAN mResetRequired = FALSE; @@ -990,9 +989,10 @@ UiEntry ( // // Indicate if the connect all has been performed before. + // If has not been performed before, do here. // - if (ConnectAllHappened) { - gConnectAllHappened = TRUE; + if (!ConnectAllHappened) { + EfiBootManagerConnectAll (); } // diff --git a/MdeModulePkg/Application/UiApp/FrontPage.h b/MdeModulePkg/Application/UiApp/FrontPage.h index 1da56ac..642d9d0 100644 --- a/MdeModulePkg/Application/UiApp/FrontPage.h +++ b/MdeModulePkg/Application/UiApp/FrontPage.h @@ -1,7 +1,7 @@ /** @file Head file for front page. -Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.
+Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -26,7 +26,6 @@ extern UINT8 FrontPageVfrBin[]; extern EFI_FORM_BROWSER2_PROTOCOL *gFormBrowser2; -extern BOOLEAN gConnectAllHappened; #define SMBIOS_TYPE4_CPU_SOCKET_POPULATED BIT6 -- cgit v1.1