mirror of https://github.com/acidanthera/audk.git
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 <liming.gao@intel.com> Cc: Eric Dong <eric.dong@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
4b46d4b641
commit
a0d1206f84
|
@ -19,7 +19,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
EFI_GUID mFrontPageGuid = FRONT_PAGE_FORMSET_GUID;
|
EFI_GUID mFrontPageGuid = FRONT_PAGE_FORMSET_GUID;
|
||||||
|
|
||||||
BOOLEAN gConnectAllHappened = FALSE;
|
|
||||||
BOOLEAN mFeaturerSwitch = TRUE;
|
BOOLEAN mFeaturerSwitch = TRUE;
|
||||||
BOOLEAN mResetRequired = FALSE;
|
BOOLEAN mResetRequired = FALSE;
|
||||||
|
|
||||||
|
@ -990,9 +989,10 @@ UiEntry (
|
||||||
|
|
||||||
//
|
//
|
||||||
// Indicate if the connect all has been performed before.
|
// Indicate if the connect all has been performed before.
|
||||||
|
// If has not been performed before, do here.
|
||||||
//
|
//
|
||||||
if (ConnectAllHappened) {
|
if (!ConnectAllHappened) {
|
||||||
gConnectAllHappened = TRUE;
|
EfiBootManagerConnectAll ();
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Head file for front page.
|
Head file for front page.
|
||||||
|
|
||||||
Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
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 EFI_FORM_BROWSER2_PROTOCOL *gFormBrowser2;
|
||||||
|
|
||||||
extern BOOLEAN gConnectAllHappened;
|
|
||||||
|
|
||||||
#define SMBIOS_TYPE4_CPU_SOCKET_POPULATED BIT6
|
#define SMBIOS_TYPE4_CPU_SOCKET_POPULATED BIT6
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue