From: Helge H. <hel...@ai...> - 2006-01-26 08:06:34
|
Peter Schrammel wrote: > Hi, > > I've installed the new Debian Xorg 6.9 packages. They dropped the > proprietary > support for evdev and implemented a clean evdev module (which is a > good news). > But actually I can't get my keyboard working any more with this new > driver. It seems > that the evdev driver doesn't support the XkbLayout option of Xorg. > > Any ideas? > > Here some pices of my config: > > vanilla linux 2.6.13 > debian sid > xorg 6.9.0 > > no kernel pathces needed > > Thanks Peter > > > > Section "Module" > Load "glx" > Load "bitmap" > Load "dbe" > Load "ddc" > Load "extmod" > Load "freetype" > Load "record" > Load "type1" > Load "evdev" > EndSection > Section "InputDevice" > Identifier "logitech0" > Driver "evdev" > #Option "Protocol" "evdev" > #Option "Dev Phys" "usb-0000:00:10.1-1/input0" > Option "Device" "/dev/input/event2" > Option "Buttons" "3" > Option "CorePointer" > Option "ZAxisMapping" "4 5" > EndSection > #-------------------------------------Tatstatur > Section "InputDevice" > Identifier "keyboard0" > Driver "evdev" > #Option "Protocol" "evdev" > Option "Device" "/dev/input/event0" > #Option "Dev Phys" "isa0060/serio0/input0" > Option "XkbModel" "pc104" > Option "XkbLayout" "de" > Option "CoreKeyboard" > EndSection This worked for me: Section "InputDevice" Identifier "Generic Keyboard" # Driver "kbd" Driver "evdev" # Option "Protocol" "evdev" Option "Device" "/dev/input/event2" # Option "Dev Phys" "isa0060/serio0/input0" Option "CoreKeyboard" Option "XkbRules" "xfree86" Option "XkbModel" "pc102" Option "XkbLayout" "no" EndSection You don't have the "XkbRules", perhaps that is the problem? Also check that you have the correct event device. (Try cat /dev/input/event0 at the console, then type a bit to verify that the event device is working.) If none of this helps, try using the same order of statements. Finally, X.org 6.9 is in unstable for a reason, there may be some bugs. Perhaps "pc104" or "de" is broken. If so, use "reportbug xserver-xorg" Helge Hafting |