summaryrefslogtreecommitdiffstats
path: root/src/vendorcode/eltan
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2019-11-08 13:06:20 -0800
committerJulius Werner <jwerner@chromium.org>2019-11-14 03:31:17 +0000
commit32e13c0b003eab6941236fc04d0299f6a0bf0ca2 (patch)
treeb842fd1588fd12036628a98a5022c505fd5552ed /src/vendorcode/eltan
parentcefe89ee7916b2c1fd6401456313f8a4d110735c (diff)
downloadcoreboot-32e13c0b003eab6941236fc04d0299f6a0bf0ca2.tar.gz
coreboot-32e13c0b003eab6941236fc04d0299f6a0bf0ca2.tar.bz2
coreboot-32e13c0b003eab6941236fc04d0299f6a0bf0ca2.zip
cbfs: Stop checking master header
The CBFS master header is a legacy structure that just conveys the same information we already have from the FMAP these days. We're still including it to support older CBFS implementations in some payloads, but there's no need for coreboot itself to follow this indirection anymore. This patch simplifies the default CBFS locator to just return the CBFS offset and size from the FMAP directly. Change-Id: I6b00dd7f276364d62fa1f637efbaee0e80607c49 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36688 Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/vendorcode/eltan')
-rw-r--r--src/vendorcode/eltan/security/verified_boot/vboot_check.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vendorcode/eltan/security/verified_boot/vboot_check.c b/src/vendorcode/eltan/security/verified_boot/vboot_check.c
index 823c2de412ca..c58ace1cf672 100644
--- a/src/vendorcode/eltan/security/verified_boot/vboot_check.c
+++ b/src/vendorcode/eltan/security/verified_boot/vboot_check.c
@@ -355,8 +355,8 @@ static void vendor_secure_prepare(void)
}
}
-const struct cbfs_locator cbfs_master_header_locator = {
+const struct cbfs_locator cbfs_default_locator = {
.name = "Vendorcode Header Locator",
.prepare = vendor_secure_prepare,
- .locate = cbfs_master_header_props
+ .locate = cbfs_default_props
};