diff options
author | Julius Werner <jwerner@chromium.org> | 2022-05-26 20:29:42 -0700 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2022-06-01 19:45:08 +0000 |
commit | 0057262b38724ea9236335de7856dd287e440cf8 (patch) | |
tree | d58abd4cd922411fee4ef04bf4e126d169898851 /src/security/tpm | |
parent | cc4dd88d2b21551f842302751255c6704b28bc52 (diff) |
cbfs: Rename TYPE_FIT to TYPE_FIT_PAYLOAD
There are too many "FIT" in firmware land. In order to reduce possible
confusion of CBFS_TYPE_FIT with the Intel Firmware Interface Table, this
patch renames it to CBFS_TYPE_FIT_PAYLOAD (including the cbfstool
argument, so calling scripts will now need to replace `-t fit` with `-t
fit_payload`).
Signed-off-by: Julius Werner <jwerner@chromium.org>
Change-Id: I826cefce54ade06c6612c8a7bb53e02092e7b11a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64735
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/security/tpm')
-rw-r--r-- | src/security/tpm/tspi/crtm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/tpm/tspi/crtm.c b/src/security/tpm/tspi/crtm.c index 41f6a9483a..24133d9f9f 100644 --- a/src/security/tpm/tspi/crtm.c +++ b/src/security/tpm/tspi/crtm.c @@ -131,7 +131,7 @@ uint32_t tspi_cbfs_measurement(const char *name, uint32_t type, const struct vb2 case CBFS_TYPE_MRC: case CBFS_TYPE_STAGE: case CBFS_TYPE_SELF: - case CBFS_TYPE_FIT: + case CBFS_TYPE_FIT_PAYLOAD: pcr_index = TPM_CRTM_PCR; break; default: |