Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/36820 )
Change subject: vendorcode/eltan/security: Add all verify_lists to include file ......................................................................
vendorcode/eltan/security: Add all verify_lists to include file
Some of the verify lists were added to the include file while others are on vboot_check.c. Also added the ramstage_verify_list.
BUG=N/A TEST=tested on fbg1701
Change-Id: If4f1d8b2278277d0af78e357ecce0d5bef441179 Signed-off-by: Wim Vervoorn wvervoorn@eltan.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/36820 Reviewed-by: Frans Hendriks fhendriks@eltan.com Reviewed-by: Aaron Durbin adurbin@chromium.org Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/vendorcode/eltan/security/verified_boot/vboot_check.c M src/vendorcode/eltan/security/verified_boot/vboot_check.h 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Aaron Durbin: Looks good to me, approved Frans Hendriks: Looks good to me, approved
diff --git a/src/vendorcode/eltan/security/verified_boot/vboot_check.c b/src/vendorcode/eltan/security/verified_boot/vboot_check.c index f139449..c053263 100644 --- a/src/vendorcode/eltan/security/verified_boot/vboot_check.c +++ b/src/vendorcode/eltan/security/verified_boot/vboot_check.c @@ -252,8 +252,6 @@ * ROMSTAGE */
-extern verify_item_t romstage_verify_list[]; - void verified_boot_early_check(void) { printk(BIOS_SPEW, "%s: processing early items\n", __func__); diff --git a/src/vendorcode/eltan/security/verified_boot/vboot_check.h b/src/vendorcode/eltan/security/verified_boot/vboot_check.h index 36c8ffa..bd28492 100644 --- a/src/vendorcode/eltan/security/verified_boot/vboot_check.h +++ b/src/vendorcode/eltan/security/verified_boot/vboot_check.h @@ -72,7 +72,9 @@ void process_verify_list(const verify_item_t list[]);
extern const verify_item_t bootblock_verify_list[]; +extern const verify_item_t romstage_verify_list[]; extern const verify_item_t postcar_verify_list[]; +extern const verify_item_t ramstage_verify_list[]; extern const verify_item_t payload_verify_list[]; extern const verify_item_t oprom_verify_list[];