Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 May 2012 11:18:10 -0400 (EDT)
From:      "Sean C. Farley" <scf@FreeBSD.org>
To:        "O. Hartmann" <ohartman@zedat.fu-berlin.de>
Cc:        Current FreeBSD <freebsd-current@FreeBSD.org>
Subject:   Re: xdm failing to start on FBSD 10.0 r2340030 erratically
Message-ID:  <alpine.BSF.2.02.1205161102070.2749@thor.farley.org>
In-Reply-To: <4F82A3AF.3050207@zedat.fu-berlin.de>
References:  <4F8176A0.807@zedat.fu-berlin.de> <20120408152915.GU1420@albert.catwhisker.org> <4F82A3AF.3050207@zedat.fu-berlin.de>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, 9 Apr 2012, O. Hartmann wrote:

> Am 04/08/12 17:29, schrieb David Wolfskill:

*snip*

>> * I don't know that this is different, but it may well be:  my 
>> xorg.conf
>>   includes a stanza:
>>
>>   Section "ServerFlags"
>>       Option         "AutoAddDevices" "False"
>>   EndSection
>>
> I should go with this and try. But as far as I know, since I have USB 
> devices (mouse, keyboard), unpluggin and pluggin them is then, without 
> hal and dbus, not recognized anymore, isn't it?
>
> There was a discussion once going one for this subject.

For posterity's sake, I wanted to mention that I use AutoAddDevices on 
my desktop, but for my laptop, I do not.  However, I do not use HAL with 
either.  Here are bits of my laptop's configuration to get it to use an 
external mouse without HAL.  sysmouse(4) handles the mouse being added 
before or after the X server is running.

Section "ServerLayout"
         ...
         InputDevice    "Keyboard0" "CoreKeyboard"
         InputDevice    "Synaptics Mouse" "CorePointer"
         InputDevice    "SysMouse" "SendCoreEvents"
         ...
EndSection

Section "InputDevice"
         Identifier  "Keyboard0"
         Driver      "kbd"
EndSection

Section "InputDevice"
         Identifier    "Synaptics Mouse"
         Driver        "synaptics"
         Option        "Protocol" "psm"
         Option        "Device" "/dev/psm0"
EndSection

Section "InputDevice"
         Identifier    "SysMouse"
         Driver        "mouse"
         Option        "Protocol" "auto"
         Option        "Device" "/dev/sysmouse"
EndSection

Sean
-- 
scf@FreeBSD.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?alpine.BSF.2.02.1205161102070.2749>