Date: Thu, 28 Mar 2019 08:59:12 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r345632 - in head/sys/modules: efirt iflib nvdimm tpm Message-ID: <201903280859.x2S8xCe0008473@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Thu Mar 28 08:59:11 2019 New Revision: 345632 URL: https://svnweb.freebsd.org/changeset/base/345632 Log: Fix `make` in sys/modules Sponsored by: The FreeBSD Foundation Modified: head/sys/modules/efirt/Makefile head/sys/modules/iflib/Makefile head/sys/modules/nvdimm/Makefile head/sys/modules/tpm/Makefile Modified: head/sys/modules/efirt/Makefile ============================================================================== --- head/sys/modules/efirt/Makefile Thu Mar 28 08:38:31 2019 (r345631) +++ head/sys/modules/efirt/Makefile Thu Mar 28 08:59:11 2019 (r345632) @@ -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: head/sys/modules/iflib/Makefile ============================================================================== --- head/sys/modules/iflib/Makefile Thu Mar 28 08:38:31 2019 (r345631) +++ head/sys/modules/iflib/Makefile Thu Mar 28 08:59:11 2019 (r345632) @@ -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: head/sys/modules/nvdimm/Makefile ============================================================================== --- head/sys/modules/nvdimm/Makefile Thu Mar 28 08:38:31 2019 (r345631) +++ head/sys/modules/nvdimm/Makefile Thu Mar 28 08:59:11 2019 (r345632) @@ -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: head/sys/modules/tpm/Makefile ============================================================================== --- head/sys/modules/tpm/Makefile Thu Mar 28 08:38:31 2019 (r345631) +++ head/sys/modules/tpm/Makefile Thu Mar 28 08:59:11 2019 (r345632) @@ -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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903280859.x2S8xCe0008473>