From: lushifex Date: Thu, 1 Sep 2016 05:02:55 +0000 (+0800) Subject: Vlv2TbltDevicePkg:Signal End of Dxe Event. X-Git-Tag: edk2-stable201903~5770 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=18b00c8c8773e62b1e2c4a36f490996325570b67 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 --- diff --git a/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c b/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c index 02e4616cfe..e1f3524efa 100644 --- a/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c +++ b/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c @@ -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);