aboutsummaryrefslogtreecommitdiff
path: root/src/security/tpm/Makefile.inc
diff options
context:
space:
mode:
authorPhilipp Deppenwiese <zaolin@das-labor.org>2017-10-18 21:54:24 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2018-01-18 02:17:34 +0000
commit86391f16054ff1aa8af75b552204d24f3c00d50e (patch)
tree4e27b7d9cbb74227080572d01a449d7b961e2130 /src/security/tpm/Makefile.inc
parentd88fb36e61beac7b52b6183385de4434895a4995 (diff)
security/tpm: Move TSS stacks into sub-directory
Change-Id: I5e20d98665c17d39f3f69772093a062bb905f6f9 Signed-off-by: Philipp Deppenwiese <zaolin@das-labor.org> Reviewed-on: https://review.coreboot.org/22105 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/security/tpm/Makefile.inc')
-rw-r--r--src/security/tpm/Makefile.inc18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/security/tpm/Makefile.inc b/src/security/tpm/Makefile.inc
index cfd93c3a76..2385635f32 100644
--- a/src/security/tpm/Makefile.inc
+++ b/src/security/tpm/Makefile.inc
@@ -1,12 +1,14 @@
-verstage-$(CONFIG_TPM) += tcg-1.2/tss.c
-verstage-$(CONFIG_TPM2) += tcg-2.0/tss_marshaling.c
-verstage-$(CONFIG_TPM2) += tcg-2.0/tss.c
+## TSS
+
+verstage-$(CONFIG_TPM) += tss/tcg-1.2/tss.c
+verstage-$(CONFIG_TPM2) += tss/tcg-2.0/tss_marshaling.c
+verstage-$(CONFIG_TPM2) += tss/tcg-2.0/tss.c
ifeq ($(CONFIG_VBOOT_SEPARATE_VERSTAGE),y)
-romstage-$(CONFIG_TPM) += tcg-1.2/tss.c
-romstage-$(CONFIG_TPM2) += tcg-2.0/tss_marshaling.c
-romstage-$(CONFIG_TPM2) += tcg-2.0/tss.c
+romstage-$(CONFIG_TPM) += tss/tcg-1.2/tss.c
+romstage-$(CONFIG_TPM2) += tss/tcg-2.0/tss_marshaling.c
+romstage-$(CONFIG_TPM2) += tss/tcg-2.0/tss.c
endif # CONFIG_VBOOT_SEPARATE_VERSTAGE
-ramstage-$(CONFIG_TPM2) += tcg-2.0/tss_marshaling.c
-ramstage-$(CONFIG_TPM2) += tcg-2.0/tss.c
+ramstage-$(CONFIG_TPM2) += tss/tcg-2.0/tss_marshaling.c
+ramstage-$(CONFIG_TPM2) += tss/tcg-2.0/tss.c