From: Stefan Reinauer Date: Tue, 3 Apr 2012 22:21:37 +0000 (+0200) Subject: Move TPM code to romstage X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=coreboot.git;a=commitdiff_plain;h=ec207630a50a61c98816b2a65183a064b230eda6 Move TPM code to romstage We want to do TPM initialization as early as possible to keep the impact on boot time low. Therefore move it to romstage. Change-Id: I5f2e021e0b11bd70a78ad1f05ec09802d015dd9e Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/856 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- diff --git a/src/pc80/Makefile.inc b/src/pc80/Makefile.inc index cd6ea3348..8ca21bf5e 100644 --- a/src/pc80/Makefile.inc +++ b/src/pc80/Makefile.inc @@ -4,7 +4,7 @@ ramstage-y += i8254.c ramstage-y += i8259.c ramstage-$(CONFIG_UDELAY_IO) += udelay_io.c ramstage-y += keyboard.c -ramstage-$(CONFIG_TPM) += tpm.c +romstage-$(CONFIG_TPM) += tpm.c romstage-$(CONFIG_USE_OPTION_TABLE) += mc146818rtc_early.c subdirs-y += vga