Sridhar Siricilla has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/40562 )
Change subject: security/vboot: Make vboot library is accessible to ramstage ......................................................................
security/vboot: Make vboot library is accessible to ramstage
Add changes to Makefile to make vboot helper functions accessible to ramstage. These functions help CSE firmware update module to trigger recovery mode for runtime errors.
Signed-off-by: Sridhar Siricilla sridhar.siricilla@intel.com Change-Id: Id1ede45c4dffe90afcef210eabaa657cf92a9335 --- M src/security/vboot/Makefile.inc 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/40562/1
diff --git a/src/security/vboot/Makefile.inc b/src/security/vboot/Makefile.inc index d1cc2da..d7c792a 100644 --- a/src/security/vboot/Makefile.inc +++ b/src/security/vboot/Makefile.inc @@ -115,6 +115,7 @@ else verstage-y += secdata_tpm.c romstage-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += secdata_tpm.c +ramstage-y += secdata_tpm.c endif
ifneq ($(CONFIG_TPM1)$(CONFIG_TPM2),) @@ -126,6 +127,7 @@
ramstage-y += common.c postcar-y += common.c +ramstage-y += vboot_logic.c
romstage-$(CONFIG_FSP2_0_USES_TPM_MRC_HASH) += mrc_cache_hash_tpm.c