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);
|
||||
|
||||
//
|
||||
// Signal EndOfDxe PI Event
|
||||
//
|
||||
EfiEventGroupSignal (&gEfiEndOfDxeEventGroupGuid);
|
||||
|
||||
Handle = NULL;
|
||||
Status = gBS->InstallProtocolInterface (
|
||||
&Handle,
|
||||
|
@ -226,11 +231,6 @@ PlatformBdsInit (
|
|||
EFI_STATUS Status;
|
||||
EFI_EVENT ShellImageEvent;
|
||||
EFI_GUID ShellEnvProtocol = SHELL_ENVIRONMENT_INTERFACE_PROTOCOL;
|
||||
|
||||
//
|
||||
// Signal EndOfDxe PI Event
|
||||
//
|
||||
EfiEventGroupSignal (&gEfiEndOfDxeEventGroupGuid);
|
||||
|
||||
#ifdef __GNUC__
|
||||
SerialPortWrite((UINT8 *)">>>>BdsEntry[GCC]\r\n", 19);
|
||||
|
|
Loading…
Reference in New Issue