From owner-svn-src-all@FreeBSD.ORG Mon Jun 15 20:12:27 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFD84106566B; Mon, 15 Jun 2009 20:12:27 +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 C27178FC17; Mon, 15 Jun 2009 20:12:27 +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 n5FKCRPN000359; Mon, 15 Jun 2009 20:12:27 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 n5FKCRsj000356; Mon, 15 Jun 2009 20:12:27 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200906152012.n5FKCRsj000356@svn.freebsd.org> From: Nick Hibma Date: Mon, 15 Jun 2009 20:12:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r194261 - in stable/7/sys/modules: acpi/acpi dtrace/dtrace linux X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2009 20:12:28 -0000 Author: n_hibma Date: Mon Jun 15 20:12:27 2009 New Revision: 194261 URL: http://svn.freebsd.org/changeset/base/194261 Log: Add opt_hwpmc_hooks.h to fix building individual modules from /sys/modules. Modified: stable/7/sys/modules/acpi/acpi/Makefile stable/7/sys/modules/dtrace/dtrace/Makefile stable/7/sys/modules/linux/Makefile Modified: stable/7/sys/modules/acpi/acpi/Makefile ============================================================================== --- stable/7/sys/modules/acpi/acpi/Makefile Mon Jun 15 20:00:19 2009 (r194260) +++ stable/7/sys/modules/acpi/acpi/Makefile Mon Jun 15 20:12:27 2009 (r194261) @@ -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: stable/7/sys/modules/dtrace/dtrace/Makefile ============================================================================== --- stable/7/sys/modules/dtrace/dtrace/Makefile Mon Jun 15 20:00:19 2009 (r194260) +++ stable/7/sys/modules/dtrace/dtrace/Makefile Mon Jun 15 20:12:27 2009 (r194261) @@ -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: stable/7/sys/modules/linux/Makefile ============================================================================== --- stable/7/sys/modules/linux/Makefile Mon Jun 15 20:00:19 2009 (r194260) +++ stable/7/sys/modules/linux/Makefile Mon Jun 15 20:12:27 2009 (r194261) @@ -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