Comment 6 for bug 152016

Revision history for this message
sNeo (salvatore-giugliano) wrote : Re: [GUTSY] Acer 5920G Touchpad not configured correctly

it works! ;)

rewrite the xorg.conf

but first.... less your /proc/bus/input/devices

for example this is the my:
 I: Bus=0011 Vendor=0002 Product=0007 Version=01b1
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio3/input0
S: Sysfs=/devices/platform/i8042/serio3/input/input8
U: Uniq=
H: Handlers=mouse1 event8
B: EV=b
B: KEY=6420 7001f 0 0 0 0
B: ABS=11000003

I: Bus=0011 Vendor=0002 Product=0007 Version=81b1
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio4/input0
S: Sysfs=/devices/platform/i8042/serio4/input/input9
U: Uniq=
H: Handlers=mouse2 event9
B: EV=b
B: KEY=6420 7000f 0 0 0 0
B: ABS=11000003

the important dat is H: Handlers

now in xorg.conf
add two input devices for the two touchpad, in the
Option "Device" "/dev/input/[H:]"
put in H: the right handler.

this is my xorg.conf
Section "InputDevice"
   Identifier "TouchPad"
   Driver "synaptics"
# Option "SendCoreEvents" "true"
   Option "CorePointer"
# Option "AlwaysCore"
   Option "Protocol" "event"
   Option "Device" "/dev/input/mouse1"
   Option "SHMConfig" "on"
EndSection

Section "InputDevice"
   Identifier "AcerMediaKeys"
   Driver "synaptics"
   Option "SendCoreEvents" "true"
# Option "CorePointer"
# Option "AlwaysCore"
# Option "Protocol" "auto-dev"
   Option "Protocol" "event"
   Option "Device" "/dev/input/event9"
EndSection