mirror of https://github.com/acidanthera/audk.git
Vlv2TbltDevicePkg:Signal EndOfDxe Event.
According to PI spec,EndOfDxe Event should be signaled before DxeSmmReadyToLock protocol installation. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: lushifex <shifeix.a.lu@intel.com> Reviewed-by: David Wei <david.wei@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
1c32ee1c58
commit
b52e697b2a
|
@ -1,6 +1,6 @@
|
||||||
/** @file
|
/** @file
|
||||||
|
|
||||||
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 are licensed and made available under
|
This program and the accompanying materials are licensed and made available under
|
||||||
the terms and conditions of the BSD License that accompanies this distribution.
|
the terms and conditions of the BSD License that accompanies this distribution.
|
||||||
|
@ -226,6 +226,11 @@ PlatformBdsInit (
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_EVENT ShellImageEvent;
|
EFI_EVENT ShellImageEvent;
|
||||||
EFI_GUID ShellEnvProtocol = SHELL_ENVIRONMENT_INTERFACE_PROTOCOL;
|
EFI_GUID ShellEnvProtocol = SHELL_ENVIRONMENT_INTERFACE_PROTOCOL;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Signal EndOfDxe PI Event
|
||||||
|
//
|
||||||
|
EfiEventGroupSignal (&gEfiEndOfDxeEventGroupGuid);
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
SerialPortWrite((UINT8 *)">>>>BdsEntry[GCC]\r\n", 19);
|
SerialPortWrite((UINT8 *)">>>>BdsEntry[GCC]\r\n", 19);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#/** @file
|
#/** @file
|
||||||
# Component name for module PlatformBootManagerLib
|
# Component name for module PlatformBootManagerLib
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2008 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
#
|
#
|
||||||
# This program and the accompanying materials are licensed and made available under
|
# This program and the accompanying materials are licensed and made available under
|
||||||
# the terms and conditions of the BSD License that accompanies this distribution.
|
# the terms and conditions of the BSD License that accompanies this distribution.
|
||||||
|
@ -97,6 +97,7 @@
|
||||||
gEfiGlobalVariableGuid
|
gEfiGlobalVariableGuid
|
||||||
gEfiNormalSetupGuid
|
gEfiNormalSetupGuid
|
||||||
gEfiPartTypeSystemPartGuid
|
gEfiPartTypeSystemPartGuid
|
||||||
|
gEfiEndOfDxeEventGroupGuid
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
gPlatformModuleTokenSpaceGuid.PcdFlashFvRecovery2Base
|
gPlatformModuleTokenSpaceGuid.PcdFlashFvRecovery2Base
|
||||||
|
|
Loading…
Reference in New Issue