Comment 2 for bug 1424888

Revision history for this message
Linux Ubuntu (linuxubuntu1) wrote : Re: BUG triggered in exevents in xorg logs

Fixed after changing /usr/share/X11/xorg.conf.d/10-evdev.conf
as detailed in
http://ubuntuforums.org/showthread.php?t=2231207&page=3

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
 Option "vendor" "045e"
 Option "product" "07dc"
 Option "IgnoreAbsoluteAxes" "True"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection