474ed6b46f
Rename the Kconfig parameter to more accurately reflect what it does. TPM can be initialised in a different stage too, for instance with VBOOT it is done in verstage. Change-Id: Ic0126b356e8430c04c7c9fd46d4e20022a648738 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52133 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
7 lines
180 B
Makefile
7 lines
180 B
Makefile
ramstage-$(CONFIG_TPM_INIT_RAMSTAGE) += tpm.c
|
|
|
|
ifeq ($(CONFIG_TPM_PPI),y)
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += ppi.c
|
|
else
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += ppi_stub.c
|
|
endif
|