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
This commit is contained in:
qwang12 2007-10-11 09:23:11 +00:00
parent b63906e1a8
commit a021b849f2
1 changed files with 31 additions and 0 deletions

View File

@ -38,6 +38,37 @@ EDK_0000: Compatible: owner
!!!!!!!!!!!!!!!!!! End of Notes !!!!!!!!!!!!!!!!!!
##########################################################################################
==========================================================================================
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