diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-11-08 20:21:23 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-11-10 15:58:38 +0800 |
commit | 7937bf2b04b83afae8c75d5d66c39c40c0335201 (patch) | |
tree | 06271216fda64abaae260e4ae85f01d79cdac950 /Nt32Pkg | |
parent | dbc19ed10aa9846fd4b2426bf8b3eca0ea39a4e9 (diff) | |
download | edk2-7937bf2b04b83afae8c75d5d66c39c40c0335201.tar.gz edk2-7937bf2b04b83afae8c75d5d66c39c40c0335201.tar.bz2 edk2-7937bf2b04b83afae8c75d5d66c39c40c0335201.zip |
Nt32Pkg/PlatformBds: Dispatch deferred images after EndOfDxe
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Sunny Wang <sunnywang@hpe.com>
Diffstat (limited to 'Nt32Pkg')
-rw-r--r-- | Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c index 7a840d075d..99f30f9ec2 100644 --- a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c +++ b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c @@ -124,6 +124,11 @@ PlatformBootManagerBeforeConsole ( // the platform should signal the event EFI_END_OF_DXE_EVENT_GUID
//
EfiEventGroupSignal (&gEfiEndOfDxeEventGroupGuid);
+
+ //
+ // Dispatch deferred images after EndOfDxe event.
+ //
+ EfiBootManagerDispatchDeferredImages ();
}
/**
|