svn commit: r350062 - in stable/12/sys/modules: efirt iflib nvdimm tpm
Eugene Grosbein
eugen at FreeBSD.org
Tue Jul 16 18:40:01 UTC 2019
Author: eugen
Date: Tue Jul 16 18:39:59 2019
New Revision: 350062
URL: https://svnweb.freebsd.org/changeset/base/350062
Log:
MFC r345632 by lwhsu: Fix `make` in sys/modules
PR: 239120
Modified:
stable/12/sys/modules/efirt/Makefile
stable/12/sys/modules/iflib/Makefile
stable/12/sys/modules/nvdimm/Makefile
stable/12/sys/modules/tpm/Makefile
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/modules/efirt/Makefile
==============================================================================
--- stable/12/sys/modules/efirt/Makefile Tue Jul 16 17:54:20 2019 (r350061)
+++ stable/12/sys/modules/efirt/Makefile Tue Jul 16 18:39:59 2019 (r350062)
@@ -9,6 +9,7 @@ SRCS+= efirtc.c
SRCS+= device_if.h bus_if.h clock_if.h
.if ${MACHINE_CPUARCH} == "amd64"
+SRCS+= opt_hwpmc_hooks.h opt_kstack_pages.h
SRCS+= efirt_support.S
efirt_support.o: efirt_support.S assym.inc
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
Modified: stable/12/sys/modules/iflib/Makefile
==============================================================================
--- stable/12/sys/modules/iflib/Makefile Tue Jul 16 17:54:20 2019 (r350061)
+++ stable/12/sys/modules/iflib/Makefile Tue Jul 16 18:39:59 2019 (r350062)
@@ -9,5 +9,6 @@ SRCS= \
mp_ring.c
SRCS+= ifdi_if.c
SRCS+= device_if.h bus_if.h pci_if.h pci_iov_if.h ifdi_if.h
+SRCS+= opt_acpi.h opt_inet.h opt_inet6.h opt_sched.h
.include <bsd.kmod.mk>
Modified: stable/12/sys/modules/nvdimm/Makefile
==============================================================================
--- stable/12/sys/modules/nvdimm/Makefile Tue Jul 16 17:54:20 2019 (r350061)
+++ stable/12/sys/modules/nvdimm/Makefile Tue Jul 16 18:39:59 2019 (r350062)
@@ -9,5 +9,6 @@ SRCS= nvdimm.c \
nvdimm_spa.c
SRCS+= acpi_if.h bus_if.h device_if.h
+SRCS+= opt_acpi.h opt_ddb.h
.include <bsd.kmod.mk>
Modified: stable/12/sys/modules/tpm/Makefile
==============================================================================
--- stable/12/sys/modules/tpm/Makefile Tue Jul 16 17:54:20 2019 (r350061)
+++ stable/12/sys/modules/tpm/Makefile Tue Jul 16 18:39:59 2019 (r350062)
@@ -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-all
mailing list