diff options
author | lushifex <shifeix.a.lu@intel.com> | 2016-09-01 13:02:55 +0800 |
---|---|---|
committer | david wei <david.wei@intel.com> | 2016-09-14 13:22:07 +0800 |
commit | 18b00c8c8773e62b1e2c4a36f490996325570b67 (patch) | |
tree | 08466821dabb17c337296420726a3b0a8c37a03b /Vlv2TbltDevicePkg/Library/PlatformBdsLib | |
parent | 8a5b8cef678711060cc9014e0fac1886839de943 (diff) | |
download | edk2-platforms-18b00c8c8773e62b1e2c4a36f490996325570b67.tar.xz |
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>
Diffstat (limited to 'Vlv2TbltDevicePkg/Library/PlatformBdsLib')
-rw-r--r-- | Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c | 10 |
1 files changed, 5 insertions, 5 deletions
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);
|