From owner-freebsd-current@FreeBSD.ORG Tue Sep 10 12:16:31 2013 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 65ED2EEC; Tue, 10 Sep 2013 12:16:31 +0000 (UTC) (envelope-from sergey.dyatko@gmail.com) Received: from mail-la0-x231.google.com (mail-la0-x231.google.com [IPv6:2a00:1450:4010:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BA7272486; Tue, 10 Sep 2013 12:16:30 +0000 (UTC) Received: by mail-la0-f49.google.com with SMTP id ev20so5897470lab.8 for ; Tue, 10 Sep 2013 05:16:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=n46QCRnoZh1iNmhtxrSKz1QDgKCSVe0h0zfEL9d2LJo=; b=K5hXqIxYSmWw3IUQjulcm1LdupbsjulHzijai4dE32GF9RhwReWlwStWYYzM1wpFHs 6lJNZNHv1QtW5XOEabbsKoa4gYuh/4G2Q/Vuii2IQ2CXlGCgLz4iZ7TRIBy8v37/dDFn ZwCE3gEHLq2WhbuH6dhx1MjhDaAYdgq5vqBPvActwSEX6SviDJaZKDPDNw2ss9TsE4As YezUJDoNskkzl7Zl8SvtFvtKkGLJNP9lecVhhR/E8qCwHbV0855C9JDI6J+xfjqODksI CovVwKQVzc1aQZ6vPd7CdjKoi72X3Yr+cEkCvNQG4HxbJHBSZUD9ZYYdyOH0bbIxNP18 0nuw== X-Received: by 10.152.7.8 with SMTP id f8mr1916611laa.31.1378815388785; Tue, 10 Sep 2013 05:16:28 -0700 (PDT) Received: from laptop.minsk.domain (m-s.agava.net. [195.222.84.203]) by mx.google.com with ESMTPSA id pw4sm8440429lbb.9.1969.12.31.16.00.00 (version=SSLv3 cipher=RC4-SHA bits=128/128); Tue, 10 Sep 2013 05:16:27 -0700 (PDT) Date: Tue, 10 Sep 2013 15:16:27 +0300 From: "Sergey V. Dyatko" To: Ruslan Makhmatkhanov Subject: Re: usb mouse and xorg Message-ID: <20130910151627.37af4cb9@laptop.minsk.domain> In-Reply-To: <522F0ABA.2020803@yandex.ru> References: <20130910144202.0e68fbca@laptop.minsk.domain> <522F0ABA.2020803@yandex.ru> X-Mailer: Claws Mail 3.9.2 (GTK+ 2.24.19; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: current@freebsd.org, hselasky@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Sep 2013 12:16:31 -0000 On Tue, 10 Sep 2013 16:04:10 +0400 Ruslan Makhmatkhanov wrote: > Sergey V. Dyatko wrote on 10.09.2013 15:42: > > Hi, > > > > after I update my HEAD box from 252xxx (i'm not sure) to r255393 USB > > mouse(s) stop work for me on X. > > Had the same. My usb/bt mouse isn't worked, while touchpad is. I > fixed this by commenting off: > > Section "ServerFlags" > Option "AutoAddDevices" "false" > EndSection > > In xorg.conf. Now the mouse is working and touchpad isn't. > I have working touchpad (it is work fine before) and mouse with hacked devd.conf (doesn't try tip from gjb@ yet) from my xorg.conf: Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "ServerFlags" Option "DontVTSwitch" "off" Option "AllowEmptyInput" "off" Option "DontZap" "off" EndSection 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 ... -- wbr, tiger