From: Ken M. <ke...@th...> - 2005-07-07 01:02:35
|
On Mon, 2005-07-04 at 23:32 +0200, Mark Hurenkamp wrote: > >> I can't seem to get the keyboard to work in the same way: > >> > >> Section "InputDevice" > >> Identifier "Generic Keyboard" > >> Driver "keyboard" > >> Option "Protocol" "evdev" > >> Option "Dev Phys" > >> "usb-0000:03:00.0-2.1/input1" > >> Option "CoreKeyboard" > >> Option "XkbRules" "xorg" > >> Option "XkbModel" "pc104" > >> Option "XkbLayout" "us" > >> EndSection > >> > > > > acording to my experiance > > keyboards are always @ ..../input0 > > where as the multimedia keys reside @ ..../input1 > > what does contain your /prc/bus/input/devices ? > > Sorry, copied the wrong part. The section actually uses > input0. Here's the correct one: > > Section "InputDevice" > Identifier "Right Keyboard" > Driver "keyboard" > Option "Protocol" "evdev" > Option "Dev Phys" "usb-0000:03:00.0-1.1/input0" > Option "CoreKeyboard" > Option "XkbRules" "xorg" > Option "XkbModel" "pc104" > Option "XkbLayout" "us" > EndSection > > Tried again today, just to make sure I have it right, but > no luck :-( > X seems to be unfamiliar with the evdev protocol for keyboards... > > (++) ServerLayout "Right" > (**) |-->Screen "Right Screen" (0) > (**) | |-->Monitor "PHILIPS 107T" > (**) | |-->Device "Matrox Graphics, Inc. MGA G550 AGP" > (**) |-->Input Device "Right Keyboard" > (**) Option "Protocol" "evdev" > > Config Error: > "evdev" is not a valid keyboard protocol name > (EE) Unable to determine the screen layout > (EE) Error parsing the config file > > So it seems to me that the '055_lnx_evdev_keyboard.diff' patch is > missing here... > > Will see if I can find the sources for ubuntu xorg, so I can take a look > there. > > > Mark. > I'm using the pre-experimental Debian packages based on the original Ubuntu packages. The /etc/apt/sources.list line for them is: deb http://people.debian.org/~dnusinow/xorg ./ With a 2.6.8 kernel, here's a snippet from my xorg.conf file. Section "InputDevice" Identifier "Keyboard" Driver "kbd" Option "Protocol" "evdev" Option "Dev Phys" "usb-*.0-1.1/input0" # Option "Dev Name" "NMB Dell USB 7HK Keyboard" Option "XkbRules" "xfree86" Option "XkbModel" "pc104" Option "XkbLayout" "us" EndSection Section "InputDevice" Identifier "Mouse" Driver "mouse" Option "Protocol" "evdev" Option "Dev Phys" "usb-*.0-1.2/input0" # Option "Dev Name" "Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)" EndSection Note that the keyboards I'm using have a two port USB hub built in. HTH, Ken |