mirror of https://github.com/acidanthera/audk.git
SignedCapsulePkg: Update RecoveryModuleLoadPei to report the correct FvInfo
Update logic to install FvInfo PPI with its file system guid. Cc: Jiewen Yao <jiewen.yao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
This commit is contained in:
parent
87d97b6a77
commit
2ed235fc29
|
@ -9,7 +9,7 @@
|
||||||
ProcessRecoveryCapsule(), ProcessFmpCapsuleImage(), ProcessRecoveryImage(),
|
ProcessRecoveryCapsule(), ProcessFmpCapsuleImage(), ProcessRecoveryImage(),
|
||||||
ValidateFmpCapsule() will receive untrusted input and do basic validation.
|
ValidateFmpCapsule() will receive untrusted input and do basic validation.
|
||||||
|
|
||||||
Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -467,7 +467,7 @@ CreateHobForRecoveryCapsule (
|
||||||
DEBUG((DEBUG_INFO, "BuildFvHob (FV in recovery) - 0x%lx - 0x%lx\n", (UINT64)(UINTN)FvHeader, FvHeader->FvLength));
|
DEBUG((DEBUG_INFO, "BuildFvHob (FV in recovery) - 0x%lx - 0x%lx\n", (UINT64)(UINTN)FvHeader, FvHeader->FvLength));
|
||||||
|
|
||||||
PeiServicesInstallFvInfoPpi(
|
PeiServicesInstallFvInfoPpi(
|
||||||
NULL,
|
&FvHeader->FileSystemGuid,
|
||||||
(VOID *)FvHeader,
|
(VOID *)FvHeader,
|
||||||
(UINT32)FvHeader->FvLength,
|
(UINT32)FvHeader->FvLength,
|
||||||
NULL,
|
NULL,
|
||||||
|
|
Loading…
Reference in New Issue