summaryrefslogtreecommitdiffstats
path: root/src/commonlib/bsd/include/commonlib
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2022-05-27 18:33:15 -0700
committerJulius Werner <jwerner@chromium.org>2022-06-01 19:45:22 +0000
commitaf20fd748b54366813d58fcbc3fb33189f32f116 (patch)
tree0fbf7b16f52363cb40a3bfbc99fc969291f20bf5 /src/commonlib/bsd/include/commonlib
parent0057262b38724ea9236335de7856dd287e440cf8 (diff)
downloadcoreboot-af20fd748b54366813d58fcbc3fb33189f32f116.tar.gz
coreboot-af20fd748b54366813d58fcbc3fb33189f32f116.tar.bz2
coreboot-af20fd748b54366813d58fcbc3fb33189f32f116.zip
cbfs: Add CBFS_TYPE_INTEL_FIT and exclude it from CBFS verification
The Intel Firmware Interface Table (FIT) is a bit of an annoying outlier among CBFS files because it gets manipulated by a separate utility (ifittool) after cbfstool has already added it to the image. This will break file hashes created for CBFS verification. This is not actually a problem when booting, since coreboot never actually loads the FIT from CBFS -- instead, it's only in the image for use by platform-specific mechanisms that run before coreboot's bootblock. But having an invalid file hash in the CBFS image is confusing when you want to verify that the image is correctly built for verification. This patch adds a new CBFS file type "intel_fit" which is only used for the intel_fit (and intel_fit_ts, if applicable) file containing the FIT. cbfstool will avoid generating and verifying file hashes for this type, like it already does for the "bootblock" and "cbfs header" types. (Note that this means that any attempt to use the CBFS API to actually access this file from coreboot will result in a verification error when CBFS verification is enabled.) Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: I1c1bb6dab0c9ccc6e78529758a42ad3194cd130c Reviewed-on: https://review.coreboot.org/c/coreboot/+/64736 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/commonlib/bsd/include/commonlib')
-rw-r--r--src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h b/src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
index be5c9cdc00a7..5b70d1aee5b3 100644
--- a/src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
+++ b/src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
@@ -30,6 +30,7 @@ enum cbfs_type {
CBFS_TYPE_VSA = 0x51,
CBFS_TYPE_MBI = 0x52,
CBFS_TYPE_MICROCODE = 0x53,
+ CBFS_TYPE_INTEL_FIT = 0x54,
CBFS_TYPE_FSP = 0x60,
CBFS_TYPE_MRC = 0x61,
CBFS_TYPE_MMA = 0x62,