[ltp] USB mouse

James Hawtin linux-thinkpad@linux-thinkpad.org
Tue, 13 Apr 2004 12:31:09 +0000 (GMT)


I have not noticed this problem. This is how I set my mice up.

Section "InputDevice"
    Identifier  "usbmouse"
    Driver      "mouse"
    Option      "Protocol" "ImPS/2"
    Option      "Device"   "/dev/input/mice"
    Option      "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    Identifier  "ps2"
    Driver      "mouse"
    Option      "Protocol" "PS/2"
    Option      "Device"   "/dev/misc/psaux"
EndSection

Section "ServerLayout"
    Identifier  "dusk"
    Screen      "lcd"
    InputDevice "ps2" "CorePointer"
    InputDevice "usbmouse" "SendCoreEvents"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection

The ps2 is the stick, usbmouse is the on demand one, also I don't
dynamically load the usb modules. I modprobe them at boot time
(mousedev hid usb-uhci).

James