From owner-freebsd-current@FreeBSD.ORG Tue Dec 9 12:09:51 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B81C16A4CE for ; Tue, 9 Dec 2003 12:09:51 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id A5BA043D32 for ; Tue, 9 Dec 2003 12:09:50 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 43215 invoked by uid 1000); 9 Dec 2003 20:09:51 -0000 Date: Tue, 9 Dec 2003 12:09:51 -0800 (PST) From: Nate Lawson To: "Robin P. Blanchard" In-Reply-To: Message-ID: <20031209120840.P43181@root.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: current@freebsd.org Subject: RE: ACPI problem X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2003 20:09:51 -0000 On Tue, 9 Dec 2003, Robin P. Blanchard wrote: > > 7. Try building the acpi kernel module with options > > ACPI_DEBUG > > I was thinking about your suggestion (above) and was wondering if there were > a way to automate ACPI_DEBUG (rather than modifying the makefile in the > module dir itself). Would the following do the trick ? > > # fgrep ACPI_DEBUG /etc/make.conf > COPTFLAGS=-O -pipe -DACPI_DEBUG That's not the best way. Here's the quickest way: cd /sys/modules/acpi && make clean && make all install ACPI_DEBUG=1 Or, build a kernel with acpi compiled in and add options ACPI_DEBUG to your kernel config. -Nate