From owner-svn-src-head@FreeBSD.ORG Thu Feb 12 14:44:15 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D14C1106576D; Thu, 12 Feb 2009 14:44:15 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BAB718FC20; Thu, 12 Feb 2009 14:44:15 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n1CEiFKB058567; Thu, 12 Feb 2009 14:44:15 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1CEiFT2058561; Thu, 12 Feb 2009 14:44:15 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200902121444.n1CEiFT2058561@svn.freebsd.org> From: Nick Hibma Date: Thu, 12 Feb 2009 14:44:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188516 - in head/sys/modules: . acpi/acpi agp dtrace/dtrace linux svr4 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2009 14:44:18 -0000 Author: n_hibma Date: Thu Feb 12 14:44:15 2009 New Revision: 188516 URL: http://svn.freebsd.org/changeset/base/188516 Log: Fix a few problems related to building modules in /sys/modules (not checked whether this applies to builds in /sys/*/compile/* as well): - Create empty opt_*.h files were missing - Hook up svr4 to the build. It compiles fine here, so no reason to disconnect it in the Makefile. were missing - Hook up svr4 to the build. It compiles fine here, so no reason to disconnect it in the Makefile. Modified: head/sys/modules/Makefile head/sys/modules/acpi/acpi/Makefile head/sys/modules/agp/Makefile head/sys/modules/dtrace/dtrace/Makefile head/sys/modules/linux/Makefile head/sys/modules/svr4/Makefile Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Thu Feb 12 14:41:23 2009 (r188515) +++ head/sys/modules/Makefile Thu Feb 12 14:44:15 2009 (r188516) @@ -259,6 +259,7 @@ SUBDIR= ${_3dfx} \ ${_stg} \ stge \ ${_streams} \ + svr4 \ sym \ ${_syscons} \ sysvipc \ Modified: head/sys/modules/acpi/acpi/Makefile ============================================================================== --- head/sys/modules/acpi/acpi/Makefile Thu Feb 12 14:41:23 2009 (r188515) +++ head/sys/modules/acpi/acpi/Makefile Thu Feb 12 14:44:15 2009 (r188516) @@ -58,7 +58,7 @@ SRCS+= cpufreq_if.h device_if.h isa_if.h # XXX ACPI should not depend on the following headers but this is currently # needed for the build of assym.s. # This obviously needs a better and more structural fix. -SRCS+= opt_kstack_pages.h opt_nfs.h opt_apic.h opt_compat.h +SRCS+= opt_kstack_pages.h opt_nfs.h opt_apic.h opt_compat.h opt_hwpmc_hooks.h # Debugging support DBSRC= dbcmds.c dbdisply.c dbexec.c dbfileio.c dbhistry.c dbinput.c dbstats.c Modified: head/sys/modules/agp/Makefile ============================================================================== --- head/sys/modules/agp/Makefile Thu Feb 12 14:41:23 2009 (r188515) +++ head/sys/modules/agp/Makefile Thu Feb 12 14:44:15 2009 (r188516) @@ -15,7 +15,7 @@ SRCS+= agp_amd64.c SRCS+= agp_amd64.c agp_i810.c agp_via.c .endif SRCS+= device_if.h bus_if.h agp_if.h pci_if.h -SRCS+= opt_bus.h +SRCS+= opt_agp.h opt_bus.h MFILES= kern/device_if.m kern/bus_if.m dev/agp/agp_if.m dev/pci/pci_if.m WERROR= Modified: head/sys/modules/dtrace/dtrace/Makefile ============================================================================== --- head/sys/modules/dtrace/dtrace/Makefile Thu Feb 12 14:41:23 2009 (r188515) +++ head/sys/modules/dtrace/dtrace/Makefile Thu Feb 12 14:44:15 2009 (r188516) @@ -23,7 +23,7 @@ SRCS+= bus_if.h device_if.h vnode_if.h SRCS+= assym.s # These are needed for assym.s -SRCS+= opt_compat.h opt_kstack_pages.h opt_nfs.h +SRCS+= opt_compat.h opt_kstack_pages.h opt_nfs.h opt_hwpmc_hooks.h .if ${MACHINE_ARCH} == "i386" SRCS+= opt_apic.h Modified: head/sys/modules/linux/Makefile ============================================================================== --- head/sys/modules/linux/Makefile Thu Feb 12 14:41:23 2009 (r188515) +++ head/sys/modules/linux/Makefile Thu Feb 12 14:44:15 2009 (r188516) @@ -17,7 +17,7 @@ SRCS= linux${SFX}_dummy.c linux_emul.c l device_if.h bus_if.h assym.s # XXX: for assym.s -SRCS+= opt_kstack_pages.h opt_nfs.h opt_apic.h opt_compat.h +SRCS+= opt_kstack_pages.h opt_nfs.h opt_apic.h opt_compat.h opt_hwpmc_hooks.h OBJS= linux${SFX}_locore.o linux${SFX}_support.o Modified: head/sys/modules/svr4/Makefile ============================================================================== --- head/sys/modules/svr4/Makefile Thu Feb 12 14:41:23 2009 (r188515) +++ head/sys/modules/svr4/Makefile Thu Feb 12 14:44:15 2009 (r188516) @@ -9,6 +9,8 @@ SRCS= svr4_sysent.c svr4_sysvec.c opt_co svr4_machdep.c svr4_resource.c svr4_ipc.c OBJS= svr4_locore.o +SRCS+= opt_ktrace.h opt_sysvipc.h opt_route.h + CLEANFILES= svr4_assym.h svr4_genassym.o svr4_assym.h: svr4_genassym.o