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>
This commit is contained in:
parent
85e680a94a
commit
7ea8b8866a
|
@ -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__);
|
||||
|
|
|
@ -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[];
|
||||
|
||||
|
|
Loading…
Reference in New Issue