svn commit: r350065 - stable/11/sys/modules/tpm

Eugene Grosbein eugen at FreeBSD.org
Tue Jul 16 19:23:48 UTC 2019


Author: eugen
Date: Tue Jul 16 19:23:47 2019
New Revision: 350065
URL: https://svnweb.freebsd.org/changeset/base/350065

Log:
  Make tpm(4) kernel module buildable outside of kernel build environment.
  
  This direct commit is partial merge of r345632 (by lwhsu) from head
  that cannot be merged completely due to significant differences
  in code base.
  
  PR:		239120

Modified:
  stable/11/sys/modules/tpm/Makefile

Modified: stable/11/sys/modules/tpm/Makefile
==============================================================================
--- stable/11/sys/modules/tpm/Makefile	Tue Jul 16 19:00:42 2019	(r350064)
+++ stable/11/sys/modules/tpm/Makefile	Tue Jul 16 19:23:47 2019	(r350065)
@@ -8,6 +8,6 @@ SRCS=	tpm.c bus_if.h device_if.h
 #Bus specific stuff.
 SRCS+=	tpm_isa.c tpm_acpi.c isa_if.h opt_acpi.h acpi_if.h
 #TPM 2.0
-SRCS+=	tpm20.c tpm_crb.c tpm_tis.c
+SRCS+=	tpm20.c tpm_crb.c tpm_tis.c opt_tpm.h
 
 .include <bsd.kmod.mk>


More information about the svn-src-stable-11 mailing list