diff options
author | Min M Xu <min.m.xu@intel.com> | 2022-06-05 09:02:48 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-06-07 11:05:53 +0000 |
commit | a81a650da1dc40ec2b2825d1878cdf2778b4be14 (patch) | |
tree | 6cc2c3adfa45290bfe9f6091cf77906ec363984d /OvmfPkg/Include | |
parent | ff0ffe5999d66a58bbbad602f9d963b8606d68ab (diff) | |
download | edk2-a81a650da1dc40ec2b2825d1878cdf2778b4be14.tar.gz edk2-a81a650da1dc40ec2b2825d1878cdf2778b4be14.tar.bz2 edk2-a81a650da1dc40ec2b2825d1878cdf2778b4be14.zip |
OvmfPkg: Delete SecMeasurementLibTdx
The feature of SecMeasurementLibTdx is replaced by SecTpmMeasurementLibTdx
(which is in SecurityPkg). So SecMeasurementLibTdx is deleted.
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Diffstat (limited to 'OvmfPkg/Include')
-rw-r--r-- | OvmfPkg/Include/Library/SecMeasurementLib.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/OvmfPkg/Include/Library/SecMeasurementLib.h b/OvmfPkg/Include/Library/SecMeasurementLib.h deleted file mode 100644 index ca7a7dc3a9..0000000000 --- a/OvmfPkg/Include/Library/SecMeasurementLib.h +++ /dev/null @@ -1,46 +0,0 @@ -/** @file
-
- Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
-
- SPDX-License-Identifier: BSD-2-Clause-Patent
-
-**/
-
-#ifndef SEC_MEASUREMENT_LIB_H_
-#define SEC_MEASUREMENT_LIB_H_
-
-/**
- Measure the Hoblist passed from the VMM.
-
- @param[in] VmmHobList The Hoblist pass the firmware
-
- @retval EFI_SUCCESS Fv image is measured successfully
- or it has been already measured.
- @retval Others Other errors as indicated
-**/
-EFI_STATUS
-EFIAPI
-MeasureHobList (
- IN CONST VOID *VmmHobList
- );
-
-/**
- Measure FV image.
-
- @param[in] FvBase Base address of FV image.
- @param[in] FvLength Length of FV image.
- @param[in] PcrIndex Index of PCR
-
- @retval EFI_SUCCESS Fv image is measured successfully
- or it has been already measured.
- @retval Others Other errors as indicated
-**/
-EFI_STATUS
-EFIAPI
-MeasureFvImage (
- IN EFI_PHYSICAL_ADDRESS FvBase,
- IN UINT64 FvLength,
- IN UINT8 PcrIndex
- );
-
-#endif
|