diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-11-08 20:19:58 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-11-10 15:58:35 +0800 |
commit | dbc19ed10aa9846fd4b2426bf8b3eca0ea39a4e9 (patch) | |
tree | f54cc383141821cf87cde7a3baf34e47fea06816 | |
parent | 6d7864c2ea24e5bbe4e45568df4500cfd16dc8f9 (diff) | |
download | edk2-platforms-dbc19ed10aa9846fd4b2426bf8b3eca0ea39a4e9.tar.xz |
QuarkPlatformPkg/PlatformBds: Dispatch deferred images after EndOfDxe
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Reviewed-by: Sunny Wang <sunnywang@hpe.com>
-rw-r--r-- | QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.c b/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.c index 7cb9628567..b61eb03360 100644 --- a/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.c +++ b/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.c @@ -321,6 +321,11 @@ PlatformBootManagerBeforeConsole ( NULL
);
ASSERT_EFI_ERROR (Status);
+
+ //
+ // Dispatch deferred images after EndOfDxe event and ReadyToLock installation.
+ //
+ EfiBootManagerDispatchDeferredImages ();
}
/**
|