summaryrefslogtreecommitdiff
path: root/MdePkg/ChangeLog.txt
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2007-09-29 09:45:03 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2007-09-29 09:45:03 +0000
commit63e4bea4445f168de5a5f810371c1ae62c1f208b (patch)
tree5804c6da8bd3cfeddba0d952c0be27dd208ec58b /MdePkg/ChangeLog.txt
parent31024e17370a91b285904e1e6cfa571e375bbcef (diff)
downloadedk2-platforms-63e4bea4445f168de5a5f810371c1ae62c1f208b.tar.xz
Update ChangeLog.txt file to log change:
1.Remove CustomDecompressLib library class. 2.Add ExtractGuidedSectionLib library class to replace CustomDecompressLib. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3985 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/ChangeLog.txt')
-rw-r--r--MdePkg/ChangeLog.txt33
1 files changed, 33 insertions, 0 deletions
diff --git a/MdePkg/ChangeLog.txt b/MdePkg/ChangeLog.txt
index fb57fa0060..570d134a42 100644
--- a/MdePkg/ChangeLog.txt
+++ b/MdePkg/ChangeLog.txt
@@ -38,7 +38,40 @@ EDK_0000: Compatible: owner
!!!!!!!!!!!!!!!!!! End of Notes !!!!!!!!!!!!!!!!!!
##########################################################################################
+==========================================================================================
+EDK_3983: Non-Compatible: lgao4
+
+ Class_Library: Remove CustomDecompressLib library class.
+
+ Code Change:
+ 1) Remove the definition MdePkg\Include\Library\CustomDecompressLib.h and
+ library instance MdePkg\Library\BaseCustomDecompressLibNull for CustomDecompressLib.
+
+ Possible Impacts:
+ 1) Drivers don't use this library class any longer. But they can use new ExtractGuidedSectionLib
+ library class to extract the compressed guided section data.
+ 2) The instance of CustomDecompressLib should be changed to register the decode function
+ into ExtractGuidedSectionHandler list, and not to produce CustomDecompressLib class.
+ 3) Platform.dsc file doesn't use this library instance any longer.
+==========================================================================================
+EDK_3980: Non-Compatible: lgao4
+
+ Class_Library: Add ExtractGuidedSectionLib library class to replace CustomDecompressLib.
+
+ Code Change:
+ 1) Add the definition MdePkg\Include\Library\ExtractGuidedSectionLib.h and
+ library instance MdePkg\Library\PeiDxeExtractGuidedSectionLib for new ExtractGuidedSectionLib.
+ 2) Add gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler in MdePkg, which is used by
+ PeiDxeExtractGuidedSectionLib library instance.
+ 3) Update DxeIpl and DxeMain modules of MdeModulePkg to use new ExtractGuidedSectionLib library class.
+ 4) Update BaseUefiTianoCustomDecompressLib of IntelFrameworkModulePkg not to produce CustomDecompressLib,
+ and to register TianoDecomress handler into ExtractGuidedSectionHandler list.
+
+ Possible Impacts:
+ 1) Platform.dsc file should update library instance and PCD if it contains DxeIpl and DxeMain modules.
+ It should use MdePkg\Library\PeiDxeExtractGuidedSectionLib library instance and
+ set gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler PCD value.
==========================================================================================
EDK_3871: Non-Compatible: klu2