From owner-freebsd-stable@FreeBSD.ORG Mon Dec 17 16:37:49 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D843FBC3 for ; Mon, 17 Dec 2012 16:37:49 +0000 (UTC) (envelope-from ramirocaso08@gmail.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7E32C8FC14 for ; Mon, 17 Dec 2012 16:37:49 +0000 (UTC) Received: by mail-vc0-f182.google.com with SMTP id fy27so5235596vcb.13 for ; Mon, 17 Dec 2012 08:37:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=K7vKPGzolpfdLmiL4itPvzRgE8CyMXE3MMwI33HhwYI=; b=nfXSZgRnEPk2Exzr0yXMncUFSaTNPEXXf3+hN8Va+STeO3Q7Oz5grGZb3KvVS4hY86 b1yvS/js3goRgRZtaqGUk4kE5/rH0f0oSp4MhC8zBMjhLW1DG/eoawh6vUtWlSMJqgVz a8CvwXYddWis0LUhvrR1OhfbmmyIBbCJqhs/SPsDVGuGHGLJNniYr+GcHgWw+MpdCe1X Afm43Q/sP23nGK0LnSTWUIivjgJUrdk6MY2n3+XjgsH0dDy4HUGLjgLErT6nMEVSjC0c 4CsPVPvFGztcwjYV2tPVC6tbaJbPDVsCdozElIElTrN5h50WPiOJ/EIYDXuwkDa96p11 aE6Q== Received: by 10.52.35.20 with SMTP id d20mr21098312vdj.50.1355762268686; Mon, 17 Dec 2012 08:37:48 -0800 (PST) Received: from [192.168.1.102] ([190.55.25.26]) by mx.google.com with ESMTPS id x17sm12344696vdi.1.2012.12.17.08.37.41 (version=SSLv3 cipher=OTHER); Mon, 17 Dec 2012 08:37:44 -0800 (PST) Message-ID: <50CF4A53.8060701@gmail.com> Date: Mon, 17 Dec 2012 13:37:39 -0300 From: Ramiro Caso User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: thinkpad and synaptics References: <20121216054053.GA1052@mycenae.sbb.rs> <20121216200302.5a70ed70@laptop> <20121217152556.GA1331@faust.sbb.rs> In-Reply-To: <20121217152556.GA1331@faust.sbb.rs> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Dec 2012 16:37:49 -0000 On 12/17/12 12:25, Zoran Kolic wrote: >> works for me on head, amd64, lenovo ideapad b450: >> >> [tiger@laptop]:~%dmesg | grep psm >> psm0: irq 12 on atkbdc0 >> psm0: [GIANT-LOCKED] >> psm0: model Synaptics Touchpad, device ID 0 >> >> [tiger@laptop]:~%grep syn /boot/loader.conf >> hw.psm.synaptics_support=1 > Done that. > >> xorg.conf: >> Section "ServerLayout" >> Identifier "X.org Configured" >> Screen 0 "Screen0" 0 0 >> InputDevice "Mouse0" "CorePointer" >> InputDevice "Keyboard0" "CoreKeyboard" >> EndSection > Done that also. > >> Section "InputDevice" >> Identifier "Mouse0" >> Driver "synaptics" >> Option "Protocol" "psm" >> Option "Device" "/dev/psm0" >> Option "SHMConfig" "on" >> Option "MinSpeed" "7" >> Option "MaxSpeed" "9" >> Option "AccelFactor" "0.0015" >> Option "ZAxisMapping" "4 5 6 7" >> EndSection > This is not what I did. I put both mouse0 and Touchpad0 > into conf file. > >> [tiger@laptop]:~%grep mouse /etc/rc.conf >> mousechar_start="3" >> #moused_enable="YES" > Ah! Ah! > I put No and it made pointer frozen. > >> [tiger@laptop]:~%pkg info -x input-s >> xf86-input-synaptics-1.5.0 X.Org synaptics input driver > Done that. > Frankly, I'd like to learn exact stept you've taken. > One by one. I made all, even stupid tries, and failed > without chance to have vertical scroll in any configu- > ration. I actually attempted this configuration, and it worked fine for me, with one difference: I had to leave moused_enabled="YES" in rc.conf. FWIW, this is the configuration I had before, which also worked (although things didn't work as nicely as with the current one): In xorg.conf: Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" Option "AutoAddDevices" "Off" EndSection [...] Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection In rc.conf: moused_enable="YES" in loader.conf: hw.psm.synaptics_support="1" > Best regards > > Zoran > > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org"