summaryrefslogtreecommitdiff
path: root/MdePkg/ChangeLog.txt
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-10-11 08:50:44 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-10-11 08:50:44 +0000
commit5b65d6045f23047c1b406c019f7f78769990743a (patch)
tree4180b09563b8c69bc847132b2699e7b99d09b67c /MdePkg/ChangeLog.txt
parent2d9af4e7a1bc3a900c2e6cde18ad351b013e7477 (diff)
downloadedk2-platforms-5b65d6045f23047c1b406c019f7f78769990743a.tar.xz
added a log for EDK_4067: Non-Compatible: qwang12
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4090 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/ChangeLog.txt')
-rw-r--r--MdePkg/ChangeLog.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/MdePkg/ChangeLog.txt b/MdePkg/ChangeLog.txt
index 570d134a42..289419b3b5 100644
--- a/MdePkg/ChangeLog.txt
+++ b/MdePkg/ChangeLog.txt
@@ -109,3 +109,35 @@ EDK_3922: Non-Compatible: qwang12, klu2
also provide convinient way to retrieve the pointer to Pei Service Table.
+EDK_4067: Non-Compatible: qwang12
+ Class_PIEnable[1]: Add PeiPiLib library class and replace PiLib with DxePiLib library class.
+
+ Code Change :
+ 1) Change MdePkg/Include/Library/PiLib.h to MdePkg/Include/Library/DxePiLib.h. DxePiLib is mainly used
+ for modules in DXE phase. Add a DxePiLib.h library instance at MdePkg/Library/DxePiLib/DxePiLib.inf.
+ 2) Add MdePkg/Include/Library/PeiPiLib.h. PeiPiLib is mainly used by modules in PEI phase.
+ Add a DxePiLib.h library instance at MdePkg/Library/PeiPiLib/PeiPiLib.inf.
+ 3) Rename API in PeiPiLib.h from PeiPiLibBuildPiFvInfoPpi to PiLibInstallFvInfoPpi.
+ 4) Rename APIs originally in PiLib.h with new names defined in DxePiLib.h:
+ 4.1) GetSectionFrom*Fv functions are changed to PiLibGetSectionFrom*Fv to reduce possibility of name collision.
+ 4.2) Remove API named ImageHandleToFvHandle and GetSectionFromFvFile
+
+
+ Possible Impacts:
+
+ 1) Platform modules that reference PeiPiLibBuildPiFvInfoPpi and GetSectionFrom*Fv should reference the new
+ names defined.
+ 2) Platform DSC file that specifying library instance for PiLib should be updated to add one line (a example
+ is given below):
+ [LibraryClasses.common.DXE_DRIVER]
+ ...
+ DxePiLib|MdePkg/Library/DxePiLib/DxePiLib.inf
+ ...
+ 3) Platform DSC file including modules that make use of API from PeiPiLib.h should add the following line (a example
+ is given below):
+ [LibraryClasses.common.PEIM]
+ ...
+ PeiPiLib|MdePkg/Library/PeiPiLib/PeiPiLib.inf
+ ...
+
+