diff --git a/src/vendorcode/eltan/security/verified_boot/vboot_check.c b/src/vendorcode/eltan/security/verified_boot/vboot_check.c index f139449651..c053263d61 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 @@ void verified_boot_bootblock_check(void) * 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 36c8ffa8d3..bd284925ae 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 @@ typedef struct { 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[];