Date: Wed, 15 Apr 2020 19:04:30 -0600 From: Warner Losh <imp@bsdimp.com> To: "Rodney W. Grimes" <rgrimes@freebsd.org> Cc: Niclas Zeising <zeising@freebsd.org>, src-committers <src-committers@freebsd.org>, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: Re: svn commit: r359985 - stable/12/sys/dev/atkbdc Message-ID: <CANCZdfrF6-Ejsh63gRPU41bFT0c_UBaDjO570t=7qV1Di4Zk2Q@mail.gmail.com> In-Reply-To: <202004160050.03G0otj3043315@gndrsh.dnsmgr.net> References: <202004151947.03FJlJai070535@repo.freebsd.org> <202004160050.03G0otj3043315@gndrsh.dnsmgr.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, Apr 15, 2020, 6:51 PM Rodney W. Grimes <freebsd@gndrsh.dnsmgr.net> wrote: > [ Charset UTF-8 unsupported, converting... ] > > Author: zeising (doc,ports committer) > > Date: Wed Apr 15 19:47:19 2020 > > New Revision: 359985 > > URL: https://svnweb.freebsd.org/changeset/base/359985 > > > > Log: > > MFC r348873: Enable touch and trackpads by default > > > > Enable synaptics and elantech touchpads, as well as IBM/Lenovo > TrackPoints > > by default, instead of having users find and toggle a loader tunable. > > This makes things like two finger scroll and other modern features > work out > > of the box with X. By enabling these settings by default, we get a > better > > desktop experience in X, since xserver and evdev can make use of the > more > > advanced synaptics and elantech features. > > > > Approved by: imp > > RELNOTES: Y? > Yea. This is a release notes item. Warner > > > Modified: > > stable/12/sys/dev/atkbdc/psm.c > > Directory Properties: > > stable/12/ (props changed) > > > > Modified: stable/12/sys/dev/atkbdc/psm.c > > > ============================================================================== > > --- stable/12/sys/dev/atkbdc/psm.c Wed Apr 15 19:33:42 2020 > (r359984) > > +++ stable/12/sys/dev/atkbdc/psm.c Wed Apr 15 19:47:19 2020 > (r359985) > > @@ -513,9 +513,9 @@ static devclass_t psm_devclass; > > /* Tunables */ > > static int tap_enabled = -1; > > static int verbose = PSM_DEBUG; > > -static int synaptics_support = 0; > > -static int trackpoint_support = 0; > > -static int elantech_support = 0; > > +static int synaptics_support = 1; > > +static int trackpoint_support = 1; > > +static int elantech_support = 1; > > > > /* for backward compatibility */ > > #define OLD_MOUSE_GETHWINFO _IOR('M', 1, old_mousehw_t) > > > > -- > Rod Grimes > rgrimes@freebsd.org >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CANCZdfrF6-Ejsh63gRPU41bFT0c_UBaDjO570t=7qV1Di4Zk2Q>