Comment 10 for bug 555169

Revision history for this message
Russ Dill (russ-dill) wrote : Re: Can't log in after regular update on Lucid

This seems to have something to do with udev, if I make an xorg.conf as follows (modify for local config), then keyboard and mouse work:

Section "InputDevice"
 Identifier "Configured Mouse"
 Driver "mouse"
 Option "CorePointer"
 Option "Device" "/dev/input/mice"
 Option "Protocol" "ImPS/2"
 Option "ZAxisMapping" "4 5"
 Option "Emulate3Buttons" "false"
EndSection

Section "Screen"
 Identifier "Default Screen"
EndSection

Section "InputDevice"
 Identifier "Generic Keyboard"
 Driver "evdev"
 Option "CoreKeyboard"
 Option "XkbRules" "xorg"
 Option "XkbModel" "pc105"
 Option "XkbLayout" "us"
 Option "XkbVariant" "dvorak"
 Option "Device" "/dev/input/event5"
EndSection

Section "ServerLayout"
 Identifier "Default Layout"
 screen "Default Screen"
 Inputdevice "Generic Keyboard"
 Inputdevice "Configured Mouse"
 Option "AllowEmptyInput" "false"
EndSection