Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Jun 2020 15:14:48 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 247417] No way to make touchpad works under freebsd 12.1
Message-ID:  <bug-247417-227-3RLgtJMj4i@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-247417-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-247417-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help

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

--- Comment #15 from Vladimir Kondratyev <wulf@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.


Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-247417-227-3RLgtJMj4i>