From owner-freebsd-stable@freebsd.org Wed Nov 21 11:11:02 2018 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2CFC11343B7 for ; Wed, 21 Nov 2018 11:11:01 +0000 (UTC) (envelope-from jacques@foucry.net) Received: from tamanoir.foucry.net (boulangerie.foucry.net [62.210.131.96]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A7A37A6F8 for ; Wed, 21 Nov 2018 11:10:58 +0000 (UTC) (envelope-from jacques@foucry.net) Received: from tamanoir.foucry.net (localhost [127.0.0.1]) by tamanoir.foucry.net (Postfix) with ESMTP id 4FD6654DEF; Wed, 21 Nov 2018 12:10:51 +0100 (CET) X-Virus-Scanned: amavisd-new at foucry.net Received: from tamanoir.foucry.net ([127.0.0.1]) by tamanoir.foucry.net (mail.foucry.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id z4R4-RHKQ935; Wed, 21 Nov 2018 12:10:50 +0100 (CET) Received: by tamanoir.foucry.net (Postfix, from userid 58) id 1084554DEE; Wed, 21 Nov 2018 12:10:50 +0100 (CET) Received: from mithril (dontpanic.foucry.net [80.67.176.134]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tamanoir.foucry.net (Postfix) with ESMTPSA id 692C954DEC; Wed, 21 Nov 2018 12:10:49 +0100 (CET) Date: Wed, 21 Nov 2018 12:10:48 +0100 From: Jacques Foucry To: freebsd-stable@freebsd.org, freebsd-harware@freebsd.org Subject: TouchPad Synaptic on ThinkPad x280 Message-ID: <20181121111047.GB53645@mithril> Mail-Followup-To: freebsd-stable@freebsd.org, freebsd-harware@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-Rspamd-Queue-Id: 3A7A37A6F8 X-Spamd-Result: default: False [1.28 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_FIVE(0.00)[5]; NEURAL_HAM_MEDIUM(-0.40)[-0.404,0]; FROM_HAS_DN(0.00)[]; NEURAL_SPAM_SHORT(0.81)[0.811,0]; IP_SCORE(0.19)[ipnet: 62.210.0.0/16(0.95), asn: 12876(0.03), country: FR(-0.02)]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MX_GOOD(-0.01)[mail.foucry.net]; RCPT_COUNT_TWO(0.00)[2]; NEURAL_SPAM_LONG(0.20)[0.197,0]; R_SPF_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MID_RHS_NOT_FQDN(0.50)[]; ASN(0.00)[asn:12876, ipnet:62.210.0.0/16, country:FR]; TAGGED_FROM(0.00)[FreeBSD]; RCVD_TLS_LAST(0.00)[]; DMARC_POLICY_SOFTFAIL(0.10)[foucry.net : No valid SPF, No valid DKIM,none] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2018 11:11:02 -0000 Hello, After my little presentation, it's time for me to ask you some question. 1/ I run FreeBSD 11.2-Release P4 on a ThinkPd lenovo X280 # uname -rms FreeBSD 11.2-RELEASE-p4 amd64 2/ The touchpad run well with synaptic driver # dmesg | grep -i touchpad psm0: model Synaptics Touchpad, device ID 0 The only thing very annoying is that I can't find the right way to disable the touchpad since I use the keyboard. Here is my 70-synaptic.conf file Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" # This option is recommend on all Linux systems using evdev, but cannot be # enabled by default. See the following link for details: # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html # MatchDevicePath "/dev/input/event*" EndSection Section "InputClass" Identifier "touchpad ignore duplicates" MatchIsTouchpad "on" MatchOS "Linux" MatchDevicePath "/dev/input/mouse*" Option "Ignore" "on" EndSection #Section "InputClass" # Identifier "touchpad" # Driver "Synaptics" # Option "PalmDetect" "1" #EndSection # This option enables the bottom right corner to be a right button on clickpads # and the right and middle top areas to be right / middle buttons on clickpads # with a top button area. # This option is only interpreted by clickpads. Section "InputClass" Identifier "Default clickpad buttons" MatchDriver "synaptics" Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0" Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%" EndSection # This option disables software buttons on Apple touchpads. # This option is only interpreted by clickpads. Section "InputClass" Identifier "Disable clickpad buttons on Apple touchpads" MatchProduct "Apple|bcm5974" MatchDriver "synaptics" Option "SoftButtonAreas" "0 0 0 0 0 0 0 0" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Is it a no-feature on synaptic driver? Disclamer: I posted on both stable and hardware ml, because I not sure where the problem is. May be between the keyboard and the chair. Thanks in advance for your help. -- Jacques