From owner-freebsd-doc@FreeBSD.ORG Wed Dec 19 22:23:56 2012 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F12B9E3B for ; Wed, 19 Dec 2012 22:23:56 +0000 (UTC) (envelope-from b.smeelen@ose.nl) Received: from mail.ose.nl (mail.ose.nl [212.178.134.164]) by mx1.freebsd.org (Postfix) with ESMTP id 72DBA8FC13 for ; Wed, 19 Dec 2012 22:23:56 +0000 (UTC) X-Footer: b3NlLm5s Received: from localhost ([127.0.0.1]) by mail.ose.nl (using TLSv1/SSLv3 with cipher AES256-SHA (256 bits)) for freebsd-doc@freebsd.org; Wed, 19 Dec 2012 23:23:54 +0100 Message-ID: <50D23E7A.90103@ose.nl> Date: Wed, 19 Dec 2012 23:23:54 +0100 From: Bas Smeelen User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: Re: [patch] Re: Fwd: thinkpad and synaptics igor: fixed whitespace References: <20121217172902.GA1017@mycenae.sbb.rs> <50D1BEAE.8030508@ose.nl> <50D1CF0E.7020001@ose.nl> <50D1EF7D.9010909@rdtan.net> <50D1F31A.7080502@ose.nl> <50D1FA9F.4010808@rdtan.net> <50D2052F.8090602@ose.nl> <50D20852.90407@ose.nl> In-Reply-To: Content-Type: multipart/mixed; boundary="------------070700010704000100050101" X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Dec 2012 22:23:57 -0000 This is a multi-part message in MIME format. --------------070700010704000100050101 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 12/19/12 22:07, Eitan Adler wrote: > On 19 December 2012 13:32, Bas Smeelen wrote: >> On 12/19/12 19:21, Eitan Adler wrote: >>> On 19 December 2012 13:19, Bas Smeelen wrote: >>>> Very nice, thanks! >>>> It is working for me also, I made a rather stupid mistake, the touchpad >>>> was >>>> disabled and I had to enable it with Fn + F7 key :) >>> Can you provide an updated patch for the FAQ? I imagine you are just >>> removing the sentence about rc.conf ? >>> >>> >> The sentence about /etc/rc.conf is fine. > so the patch is fine as is, I got lost in the follow up? > > Just three minor changes. --------------070700010704000100050101 Content-Type: text/plain; charset=us-ascii; name="synaptics-faq-diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="synaptics-faq-diff.txt" Index: en_US.ISO8859-1/books/faq/book.xml =================================================================== --- en_US.ISO8859-1/books/faq/book.xml (revision 40429) +++ en_US.ISO8859-1/books/faq/book.xml (working copy) @@ -5753,6 +5753,46 @@ + + + My laptop has a Synaptics touchpad. Can I use + it in X? + + + + Yes, you will have to configure a few things to + make it work. + + To use the &xorg; synaptics driver in X, you + must remove + moused_enable="YES" from + rc.conf. &xorg can not use + the synaptics touchpad if the moused already uses + /dev/psm0. + + To enable synaptics in &man.psm.4 + add the following to + /boot/loader.conf: + + hw.psm.synaptics_support="1" + + Also add the following to + xorg.conf: + + Section "InputDevice" +Identifier "Touchpad0" +Driver "synaptics" +Option "Protocol" "psm" +Option "Device" "/dev/psm0" +EndSection + + As well as the following in the + ServerLayout section : + + InputDevice "Touchpad0" "SendCoreEvents" + + + How do I use remote X displays? --------------070700010704000100050101--