Furquan Shaikh has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41137 )
Change subject: vboot: Provide declaration for verstage_mainboard_early_init() ......................................................................
vboot: Provide declaration for verstage_mainboard_early_init()
Similar to bootblock, provide declaration for verstage_mainboard_early_init() to support early mainboard initialization if verstage is run before bootblock.
BUG=b:155824234 TEST=Verified that trembyle still builds
Signed-off-by: Furquan Shaikh furquan@google.com Change-Id: I106213ecc1c44100f1f74071189518563ac08121 --- M src/security/vboot/vboot_common.h 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/37/41137/1
diff --git a/src/security/vboot/vboot_common.h b/src/security/vboot/vboot_common.h index f25ee46..a260475 100644 --- a/src/security/vboot/vboot_common.h +++ b/src/security/vboot/vboot_common.h @@ -43,6 +43,7 @@ * If the verstage is a separate stage, it should be entered via main(). */ void verstage_main(void); +void verstage_mainboard_early_init(void); void verstage_mainboard_init(void);
/* Check boot modes */