[Bug 247417] No way to make touchpad works under freebsd 12.1

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Jun 26 15:14:48 UTC 2020


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247417

--- Comment #15 from Vladimir Kondratyev <wulf at freebsd.org> ---
Created attachment 215962
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=215962&action=edit
psm.patch

(In reply to Mc James from comment #14)
> as you can see still being picked up by libinput.
It is ignored by libinput now but is not picked by xf86-input-mouse for some
reasons. Ensure you have x11-drivers/xf86-input-mouse installed and try
explicitly character device with following lines:

Section "InputClass"
        Identifier              "PS/2 mouse"
        Option                  "Protocol" "auto"
        Option                  "Device" "/dev/psm0"
        Driver                  "mouse"
EndSection

Section "InputClass"
        Identifier              "ignore evdev interface of PS/2 mouse"
        MatchDevicePath         "/dev/input/event3"
        Option                  "Ignore" "true"
EndSection

You can test enclosed patch too. It maps tap to left button by kernel driver
means and requires kernel recompiling. No Xorg config changes required in this
case so it could be a better way. Old Xorg.conf changes should be backed out.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-bugs mailing list