mirror of https://github.com/acidanthera/audk.git
Vlv2TbltDevicePkg:Signal End of Dxe Event.
According to PI spec,DxeSmmReadyToLock protocol is published immediately after signaling of the End of Dxe Event. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: lushifex <shifeix.a.lu@intel.com>
This commit is contained in:
parent
8a5b8cef67
commit
18b00c8c87
|
@ -181,6 +181,11 @@ InstallReadyToLock (
|
||||||
);
|
);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Signal EndOfDxe PI Event
|
||||||
|
//
|
||||||
|
EfiEventGroupSignal (&gEfiEndOfDxeEventGroupGuid);
|
||||||
|
|
||||||
Handle = NULL;
|
Handle = NULL;
|
||||||
Status = gBS->InstallProtocolInterface (
|
Status = gBS->InstallProtocolInterface (
|
||||||
&Handle,
|
&Handle,
|
||||||
|
@ -227,11 +232,6 @@ PlatformBdsInit (
|
||||||
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);
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue