Patrick Georgi submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Aaron Durbin: Looks good to me, approved
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
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41137
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
---
M src/security/vboot/vboot_common.h
1 file changed, 1 insertion(+), 0 deletions(-)

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 */

To view, visit change 41137. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I106213ecc1c44100f1f74071189518563ac08121
Gerrit-Change-Number: 41137
Gerrit-PatchSet: 2
Gerrit-Owner: Furquan Shaikh <furquan@google.com>
Gerrit-Reviewer: Aaron Durbin <adurbin@chromium.org>
Gerrit-Reviewer: Patrick Georgi <pgeorgi@google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-MessageType: merged