From owner-freebsd-mobile@FreeBSD.ORG Sat May 17 22:34:41 2003 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8069C37B401; Sat, 17 May 2003 22:34:41 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5DB043F75; Sat, 17 May 2003 22:34:40 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h4I5YNkA081532; Sat, 17 May 2003 23:34:27 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 17 May 2003 23:32:51 -0600 (MDT) Message-Id: <20030517.233251.76964171.imp@bsdimp.com> To: dmlb@dmlb.org From: "M. Warner Losh" In-Reply-To: References: X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-current@freebsd.org cc: freebsd-mobile@freebsd.org Subject: Re: Centrino Laptop (Acer 800Cli) and 5.1 X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 May 2003 05:34:41 -0000 In message: Duncan Barclay writes: : I'm looking for suggestions on how to debug 5.1 to get a bit further in the : boot cycle! >From the acpi man page: The acpi driver comprises a set of drivers, which may be selectively dis- abled in case of problems. To disable a sub-driver, list it in the ker- nel environment variable debug.acpi.disable. ACPI sub-devices and features that can be disabled: bus (feature) Probes and attaches subdevices. Disabling will avoid scanning the ACPI namespace entirely. children (feature) Attaches standard ACPI sub-drivers and devices enu- merated in the ACPI namespace. Disabling this has a similar effect to disabling ``bus'', except that the ACPI namespace will still be scanned. button (device) Supports ACPI button devices (typically power and sleep buttons). ec (device) Supports the ACPI Embedded Controller interface, used to communicate with embedded platform controllers. isa (device) Supports an ISA bus bridge defined in the ACPI names- pace, typically as a child of a PCI bus. lid (device) Supports an ACPI laptop lid switch, which typically puts a system to sleep. pci (device) Supports Host to PCI bridges. cpu (device) Supports CPU power-saving and speed-setting functions. thermal (device) Supports system cooling and heat management. timer (device) Implements a timecounter using the ACPI fixed-fre- quency timer. See if disabling only a subset helps you solve your problem. I didn't know about these until I went to add a note about disabling acpi to the man page... Warner