summaryrefslogtreecommitdiff
path: root/MdeModulePkg/ChangeLog.txt
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-10-11 09:23:11 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-10-11 09:23:11 +0000
commita021b849f212d124593070ea7d1c423f65d7c119 (patch)
tree0bdf4a6d8751b22fbf0f6d35ef4408faaa29122c /MdeModulePkg/ChangeLog.txt
parentb63906e1a8a5486105816921b5d6e01241abd724 (diff)
downloadedk2-platforms-a021b849f212d124593070ea7d1c423f65d7c119.tar.xz
add EDK_4067: Non-Compatible: qwang12
Class_PIEnable[6]: PEI core does not build FV HOB upon notification of a EFI_PEI_FIRMWARE_VOLUME_INFO_PPI automatically. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4093 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/ChangeLog.txt')
-rw-r--r--MdeModulePkg/ChangeLog.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/MdeModulePkg/ChangeLog.txt b/MdeModulePkg/ChangeLog.txt
index 324868ee1f..e50ab47366 100644
--- a/MdeModulePkg/ChangeLog.txt
+++ b/MdeModulePkg/ChangeLog.txt
@@ -39,6 +39,37 @@ EDK_0000: Compatible: owner
##########################################################################################
==========================================================================================
+EDK_4067: Non-Compatible: qwang12
+ Class_PIEnable[6]: PEI core does not build FV HOB upon notification of a EFI_PEI_FIRMWARE_VOLUME_INFO_PPI automatically.
+
+ Code Change :
+ 1) MdeModulePkg/Core/Pei/FwVol/FwVol.c
+
+ Impact to platform code:
+ 1) If platform module want to inform both PEI core and DXE core about the existance of new FV
+ it must both install EFI_PEI_FIRMWARE_VOLUME_INFO_PPI and FV HOB.
+
+ A example is given belows:
+
+ PiLibInstallFvInfoPpi (
+ NULL,
+ Buffer,
+ (UINT32) FvHeader->FvLength,
+ NULL,
+ NULL
+ );
+
+ BuildFvHob (
+ (EFI_PHYSICAL_ADDRESS) (UINTN) Buffer,
+ (UINT32) FvHeader->FvLength
+ );
+
+ PEI core does not automatically build FV HOB upon notification of a EFI_PEI_FIRMWARE_VOLUME_INFO_PPI.
+ The description in Item 2 in Section 4.8.1.2 in Vol 1 of PI spec will be updated to remove the
+ "Create a new firmware volume HOB" wording.
+
+
+==========================================================================================
EDK_4000-4006: Compatible: qhuang8
Class_UefiEnable[0]: Uefi feature -Add component name 2 protocol support for