diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-07-21 03:29:50 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-07-21 03:29:50 +0000 |
commit | 15b2f67f645b15dcda3e5e21c2f3068a5daa40be (patch) | |
tree | 09cc59218d555cd28a88c6d77ea6923530c3d55f /package | |
parent | 9e861b63fb24e90b71b2984878efebe1ec4eac8a (diff) | |
download | buildroot-novena-15b2f67f645b15dcda3e5e21c2f3068a5daa40be.tar.gz buildroot-novena-15b2f67f645b15dcda3e5e21c2f3068a5daa40be.zip |
let X figure out the correct mouse protocol
Diffstat (limited to 'package')
-rw-r--r-- | package/xorg/xorg.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/xorg/xorg.conf b/package/xorg/xorg.conf index ceb17eadf..769646245 100644 --- a/package/xorg/xorg.conf +++ b/package/xorg/xorg.conf @@ -39,18 +39,18 @@ EndSection Section "InputDevice" Identifier "PS2 Mouse" Driver "mouse" - Option "CorePointer" + Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" - Option "Protocol" "ImPS/2" + Option "Protocol" "auto" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "USB Mouse" Driver "mouse" - Option "SendCoreEvents" "true" + Option "CorePointer" Option "Device" "/dev/input/mice" - Option "Protocol" "ImPS/2" + Option "Protocol" "auto" Option "ZAxisMapping" "4 5" EndSection |