Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Jun 2019 13:04:06 -0700 (PDT)
From:      "Rodney W. Grimes" <freebsd@gndrsh.dnsmgr.net>
To:        Niclas Zeising <zeising@freebsd.org>
Cc:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r348873 - head/sys/dev/atkbdc
Message-ID:  <201906102004.x5AK46EI079752@gndrsh.dnsmgr.net>
In-Reply-To: <201906101819.x5AIJnAX078838@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
> Author: zeising (doc,ports committer)
> Date: Mon Jun 10 18:19:49 2019
> New Revision: 348873
> URL: https://svnweb.freebsd.org/changeset/base/348873
> 
> Log:
>   psm(4): Enable touchpads 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.
>   
>   Reviewed by:	imp, wulf, 0mp
>   Approved by:	imp
>   Sponsored by:	B3 Init (zeising)
>   Differential Revision:	https://reviews.freebsd.org/D20507

This should of probably had a 
Relnotes:	Yes
as it changes default system behavior.

> Modified:
>   head/sys/dev/atkbdc/psm.c
> 
> Modified: head/sys/dev/atkbdc/psm.c
> ==============================================================================
> --- head/sys/dev/atkbdc/psm.c	Mon Jun 10 17:44:50 2019	(r348872)
> +++ head/sys/dev/atkbdc/psm.c	Mon Jun 10 18:19:49 2019	(r348873)
> @@ -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?201906102004.x5AK46EI079752>