diff options
author | jiewen yao <jiewen.yao@intel.com> | 2016-01-29 19:55:32 +0800 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-07-04 10:25:43 +0800 |
commit | fc8d928a97b34e74c2bd76456dc4974d114977e9 (patch) | |
tree | 7c295a5498c19eaedcd487044e85b7a9a4a0317a | |
parent | 6240b4de0cc232f09e44b0ae8efae553687eb318 (diff) | |
download | edk2-platforms-fc8d928a97b34e74c2bd76456dc4974d114977e9.tar.xz |
MdePkg: Call CoreInitializeMemoryAttributesTable() in DXE Entrypoint.
Call CoreInitializeMemoryAttributesTable() in DXE Entrypoint.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Yao, Jiewen" <jiewen.yao@intel.com>
Reviewed-by: "Gao, Liming" <liming.gao@intel.com>
(cherry picked from commit a94d51bde5e8dd55a5916ba75c9938b5796633f6)
-rw-r--r-- | MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c b/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c index e60d2f2dcc..0a34711b22 100644 --- a/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c +++ b/MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c @@ -1,7 +1,7 @@ /** @file
DXE Core Main Entry Point
-Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -388,6 +388,7 @@ DxeMain ( MemoryProfileInstallProtocol ();
CoreInitializePropertiesTable ();
+ CoreInitializeMemoryAttributesTable ();
//
// Get persisted vector hand-off info from GUIDeed HOB again due to HobStart may be updated,
|