diff options
author | Yang, Longlong <longlong.yang@intel.com> | 2021-09-17 10:50:55 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-09-18 08:57:46 +0000 |
commit | 542cba73d21b7bcc1e3852a9d9843d5fffc2d173 (patch) | |
tree | 99152550d1b8ec27d4249342cd1737fd2b4353d2 /SecurityPkg/FvReportPei | |
parent | e3e47d7963985f669f5826eac41b3ac4f19fc444 (diff) | |
download | edk2-542cba73d21b7bcc1e3852a9d9843d5fffc2d173.tar.gz |
SecurityPkg: Add debug log for indicating IBB verified OBB successfully
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3615
Debug message should be added for indicating IBB is successfully verifying
the OBB.
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Min M Xu <min.m.xu@intel.com>
Cc: Qi Zhang <qi1.zhang@intel.com>
Signed-off-by: Longlong Yang <longlong.yang@intel.com>
Reviewed-by: Min M Xu <min.m.xu@intel.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Diffstat (limited to 'SecurityPkg/FvReportPei')
-rw-r--r-- | SecurityPkg/FvReportPei/FvReportPei.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SecurityPkg/FvReportPei/FvReportPei.c b/SecurityPkg/FvReportPei/FvReportPei.c index e82413e090..9f3ebd8ed1 100644 --- a/SecurityPkg/FvReportPei/FvReportPei.c +++ b/SecurityPkg/FvReportPei/FvReportPei.c @@ -344,6 +344,8 @@ CheckStoredHashFv ( StoredHashFvPpi->FvNumber, BootMode);
if (!EFI_ERROR (Status)) {
+ DEBUG ((DEBUG_INFO, "OBB verification passed (%r)\r\n", Status));
+
//
// Report the FVs to PEI core and/or DXE core.
//
|