From owner-freebsd-x11@freebsd.org Thu Feb 25 16:26:39 2016 Return-Path: Delivered-To: freebsd-x11@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45469AB3E4F for ; Thu, 25 Feb 2016 16:26:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 2A89D13A4 for ; Thu, 25 Feb 2016 16:26:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u1PGQcWV097038 for ; Thu, 25 Feb 2016 16:26:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-x11@FreeBSD.org Subject: [Bug 196678] x11-servers/xorg-server: make config/devd recognize /dev/input/eventX from multimedia/webcamd Date: Thu, 25 Feb 2016 16:26:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: FreeBSD@ShaneWare.Biz X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-x11@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Feb 2016 16:26:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D196678 --- Comment #31 from FreeBSD@ShaneWare.Biz --- (In reply to Hans Petter Selasky from comment #28) I am using the most recent config/devd.c patch dated 2016-02-07 (In reply to rozhuk.im from comment #29) xf86-input-wacom actually installs wacom.conf.sample into /usr/local/etc/X11/xorg.conf.d which uses InputDevice sections that I didn't get working. -- I made some progress today, I am now using DEVD with the wacom driver to get some of the bamboo working. The trick seemed to be setting Driver and Type = with MatchXXX settings good enough that only one section matches a device. I now have the following in xorg.conf.d/wacom.conf - Section "InputClass" # wacom pen as a stylus Identifier "wacom stylus" MatchUSBID "056a:*" MatchProduct "Pen" Driver "wacom" Option "type" "stylus" Option "Mode" "Relative" Option "Threshold" "20" EndSection Section "InputClass" # the touchpad function Identifier "wacom touch" MatchUSBID "056a:*" MatchProduct "Finger" Driver "wacom" Option "type" "touch" Option "Mode" "Relative" Option "Ignore" "true" EndSection Section "InputClass" # the buttons on the side Identifier "wacom pad" MatchUSBID "056a:*" MatchProduct "Pad" Driver "wacom" Option "Ignore" "true" EndSection The stylus works, the touchpad works mostly. I can set the pen type to styl= us or eraser but I can only get one working at a time. For now I am setting ignore for touch and pad so I just have a working styl= us. Issues:- stylus and eraser don't enable simultaneously. man wacom leads to dependent devices needing to be configured using MatchDriver "wacom" and Option "Devi= ce" "path", I have not got this to work. touchpad is intermittent, I particularly see multitouch events occasionally hang the touchpad for some time. When enabled, pressing the buttons causes input devices to break. This incl= udes the mouse as well as wacom functions. I see the pad appear as a pointer dev= ice but thought it was meant to be a keyboard so that various actions can be assigned to each as a keyboard shortcut. The pad is also responsible for creating /dev/input/js0 (as well as event2) which xorg identifies as a joystick. --=20 You are receiving this mail because: You are the assignee for the bug.=