From owner-freebsd-mobile@FreeBSD.ORG Tue Aug 3 12:25:30 2010 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 141BA106566B for ; Tue, 3 Aug 2010 12:25:30 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id C27EC8FC20 for ; Tue, 3 Aug 2010 12:25:29 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.4/8.14.4) with ESMTP id o73CPS3r009744; Tue, 3 Aug 2010 06:25:28 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.4/8.14.4/Submit) with ESMTP id o73CPSES009741; Tue, 3 Aug 2010 06:25:28 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Tue, 3 Aug 2010 06:25:28 -0600 (MDT) From: Warren Block To: Ian Smith In-Reply-To: <20100803152134.H34284@sola.nimnet.asn.au> Message-ID: References: <4C572E8D.10002@paz.bz> <4C57386E.7060400@gmail.com> <20100803152134.H34284@sola.nimnet.asn.au> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.5 (wonkity.com [127.0.0.1]); Tue, 03 Aug 2010 06:25:28 -0600 (MDT) Cc: Jim Pazarena , Glen Barber , freebsd-mobile@freebsd.org Subject: Re: mouse dies when kdm is triggered X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Aug 2010 12:25:30 -0000 On Tue, 3 Aug 2010, Ian Smith wrote: > On Mon, 2 Aug 2010, Warren Block wrote: > > > > In today's world, using AllowEmptyInput Off is asking for input problems. > > It's the wrong way to disable hal for input device detection. AEI also hates > > kittens and puppies and will throw garbage on your lawn. > > So what's the recipe for the current RIGHT way to disable using hal and > dbus, configuring xorg.conf appropriately? My Thinkpad T23 running > 7.2-STABLE and 8.0-RELEASE systems is currently broken, or I could refer > to how I did it for them, costing quite some research pain at the time. Add Option "AutoAddDevices" "Off" to the ServerLayout or ServerFlags section. That prevents xorg from adding hal-detected devices, even if hal is running. The other option is to build xorg-server without hal support: # cd /usr/ports/x11-servers/xorg-server; make config Turn off the HAL option and rebuild/reinstall the port. If you do that, a reminder comment about it in xorg.conf could be a good idea. Or just include the AutoAddDevices option anyway; I doubt xorg-server without hal support would complain about it, but can't recall testing that.