From owner-freebsd-doc@FreeBSD.ORG Wed Dec 19 17:34:27 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 0D825AB4 for ; Wed, 19 Dec 2012 17:34:27 +0000 (UTC) (envelope-from myself@rdtan.net) Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com [209.85.220.47]) by mx1.freebsd.org (Postfix) with ESMTP id C773A8FC0C for ; Wed, 19 Dec 2012 17:34:26 +0000 (UTC) Received: by mail-pa0-f47.google.com with SMTP id fa10so1464508pad.6 for ; Wed, 19 Dec 2012 09:34:26 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding:x-gm-message-state; bh=D3EPiJaVQ+jXXZhG/swCm5jr3wab1xBQWEIq7AFQzWQ=; b=ION1ELcz+jW0RUM6cn5ODHxEwkdAFN2Cp1ONvxD8G3sicLszmthL5YsukqIPjNFUTr lwuGBkLqAj5yCwUIzBIndaOyTBtOzN6X7jL7AP8P9fragTJtV/R/NK9+jdC77vDVe8Nu UqSGjoPhZiNwzRvV3Xpc4GORzMxnqD6aiBjavQuKOoKlkI4s5bMKUd5WVudfFxFSpI15 SizdguiL1pFI+78ODlAE7nQk6fH8npL6M40tv/BqHl4qKTw71dSn6vkKV92AA1SEXOJt 23bXrt0Q/Mmivlult4GOmfL5i2YTvRa+2nc/Ah+Sg3G4JwyaejViGtVm48vIiM9Cws0a OzJg== X-Received: by 10.68.143.162 with SMTP id sf2mr20460937pbb.137.1355938466182; Wed, 19 Dec 2012 09:34:26 -0800 (PST) Received: from zion.local ([175.136.182.84]) by mx.google.com with ESMTPS id nw9sm3434423pbb.42.2012.12.19.09.34.24 (version=SSLv3 cipher=OTHER); Wed, 19 Dec 2012 09:34:25 -0800 (PST) Message-ID: <50D1FA9F.4010808@rdtan.net> Date: Thu, 20 Dec 2012 01:34:23 +0800 From: Edward User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Bas Smeelen 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> In-Reply-To: <50D1F31A.7080502@ose.nl> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQl+Y0tlQ10sicALjgbNYu3hQ0imiCW8GUTTGsTJnML57llTDdsY1yALfTBZXcNUcY0tEDuh Cc: freebsd-doc@freebsd.org 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 17:34:27 -0000 On 12/20/12 1:02 AM, Bas Smeelen wrote: > Thanks! Do you have a working mouse in X when you plugin one via usb? > Can synaptics and usb mouse be active at simultaneously in X? Yes, there's a working Logitech USB optical mouse working before and after making touchpad works with synaptics driver. Both touchpad and USB mouse works simultaneously in X. > I'm trying to get it to work on my laptop acer aspire 3682-150 but > cannot get it to work. > moused_enable="YES" is not in /etc/rc.conf but it still gets started > through hal I guess. > When I kill those processes (below), still no joy with the touchpad in X. > Also the mouse does not work in X when moused is not running. > > 2116 ?? I 0:00.03 hald-addon-mouse-sysmouse: /dev/psm0 > (hald-addon-mouse-sy) > 2132 ?? I 0:00.04 hald-addon-mouse-sysmouse: /dev/ums0 > (hald-addon-mouse-sy) > 2151 ?? Is 0:00.00 /usr/sbin/moused -p /dev/psm0 -t auto > > I must be doing something wrong. > sysctl's for synaptics are all there. > xorg.conf is in place with the right entries. > no moused_enable="YES" in /etc/rc.conf > in /etc/default/rc.conf moused_enable="NO" I suppose when setting hw.psm.synaptics_support="1" would make moused run. For your reference, here's what I've done: - put this into /boot/loader/conf and then reboot the machine: hw.psm.synaptics_support="1" - put these into /etc/X11/xorg.conf: Section "InputDevice" Identifier "Touchpad0" Driver "synaptics" Option "Protocol" "psm" Option "Device" "/dev/psm0" EndSection - and append these into "ServerLayout" section of /etc/X11/xorg.conf: InputDevice "Touchpad0" "SendCoreEvents" - comment out moused_enable="YES" in /etc/rc.conf Hope this help.