vboot: Always build secdata functions for romstage
Since CB:40389, all platforms with CONFIG_VBOOT_EARLY_EC_SYNC need to write back secdata in romstage. Those platforms currently all happen to have CONFIG_VBOOT_SEPARATE_VERSTAGE set as well, but there's no official dependency between those options. Change the Makefile to unconditionally build the secdata access routines for romstage so that this would work on other platforms as well. Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: I0b3c79e9bb8af9d09ef91f5749953ca109dd2a40 Reviewed-on: https://review.coreboot.org/c/coreboot/+/40760 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
338fd9ad30
commit
f0ebaf2260
|
@ -111,10 +111,10 @@ verstage-y += common.c
|
|||
verstage-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += verstage.c
|
||||
ifeq (${CONFIG_VBOOT_MOCK_SECDATA},y)
|
||||
verstage-y += secdata_mock.c
|
||||
romstage-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += secdata_mock.c
|
||||
romstage-y += secdata_mock.c
|
||||
else
|
||||
verstage-y += secdata_tpm.c
|
||||
romstage-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += secdata_tpm.c
|
||||
romstage-y += secdata_tpm.c
|
||||
endif
|
||||
|
||||
ifneq ($(CONFIG_TPM1)$(CONFIG_TPM2),)
|
||||
|
|
Loading…
Reference in New Issue