diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-18 08:38:00 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-18 08:38:00 +0000 |
commit | 82b8c8df0763d3ce93281d489e512bee12068873 (patch) | |
tree | 1eee47c0376b767a47dbde4c40ccb856526d3868 /MdeModulePkg/Core/Pei/Security/Security.c | |
parent | b3bc6cd9e3f72d0b587983f222ba5455bda78a7e (diff) | |
download | edk2-platforms-82b8c8df0763d3ce93281d489e512bee12068873.tar.xz |
Re-integrate patch in r5626~r5628:Enhance PeiCore dispatcher and fix a bug in the patch.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5669 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/Pei/Security/Security.c')
-rw-r--r-- | MdeModulePkg/Core/Pei/Security/Security.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MdeModulePkg/Core/Pei/Security/Security.c b/MdeModulePkg/Core/Pei/Security/Security.c index 7460707a27..469686ff23 100644 --- a/MdeModulePkg/Core/Pei/Security/Security.c +++ b/MdeModulePkg/Core/Pei/Security/Security.c @@ -62,7 +62,8 @@ InitializeSecurityServices ( /**
Provide a callback for when the security PPI is installed.
-
+ This routine will cache installed security PPI into PeiCore's private data.
+
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
@param NotifyDescriptor The descriptor for the notification event.
@param Ppi Pointer to the PPI in question.
@@ -105,7 +106,7 @@ SecurityPpiNotifyCallback ( @retval EFI_SUCCESS Image is OK
@retval EFI_SECURITY_VIOLATION Image is illegal
-
+ @retval EFI_NOT_FOUND If security PPI is not installed.
**/
EFI_STATUS
VerifyPeim (
@@ -148,10 +149,9 @@ VerifyPeim ( /**
Verify a Firmware volume.
- @param CurrentFvAddress - Pointer to the current Firmware Volume under consideration
+ @param CurrentFvAddress Pointer to the current Firmware Volume under consideration
- @retval EFI_SUCCESS Firmware Volume is legal
- @retval EFI_SECURITY_VIOLATION Firmware Volume fails integrity test
+ @retval EFI_SUCCESS Firmware Volume is legal
**/
EFI_STATUS
|