From owner-freebsd-usb@FreeBSD.ORG Tue Oct 11 16:58:59 2011 Return-Path: Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B347106566B; Tue, 11 Oct 2011 16:58:59 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 1649A8FC18; Tue, 11 Oct 2011 16:58:58 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 16DCB1E000E6; Tue, 11 Oct 2011 18:42:40 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.4/8.14.3) with ESMTP id p9BGNfN2003431; Tue, 11 Oct 2011 18:23:41 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.4/8.14.3/Submit) id p9BGNfWG003430; Tue, 11 Oct 2011 18:23:41 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Tue, 11 Oct 2011 18:23:41 +0200 To: freebsd-ports@FreeBSD.org, freebsd-usb@FreeBSD.org Message-ID: <20111011162341.GA3048@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: Testing Wacom usb tablet with webcamd svn (and mypaint) X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2011 16:58:59 -0000 Hi! My dad likes to paint a bit so I got him a Wacom tablet as a present (Bamboo Pen & Touch), and I thought I could help getting it working on FreeBSD while I was at it... Asked hps, who kindly prepared a webcamd update that adds support: svn --username anonsvn --password anonsvn \ checkout svn://svn.turbocat.net/i4b/trunk/ports cd ports/multimedia/webcamd && make all install clean which I now tested with a preliminary x11-drivers/input-wacom xorg driver update that I prepared: http://people.freebsd.org/~nox/tmp/inputwacom.patch I had to rebuild xorg-server without hal support because apparently hal and thus the xserver picked up webcamd's /dev/input node for the wacom which made my mouse misbehave (proper hal configs to ignore webcamd's device node welcome, :) and I added this to xorg.conf: ----snip--- Section "ServerLayout" ... InputDevice "stylus" InputDevice "eraser" ... EndSection ... Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/input/event0" Option "Type" "stylus" Option "USB" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/input/event0" Option "Type" "eraser" Option "USB" "on" EndSection ----snip--- ..and that appears to have got graphics/mypaint working (which btw needs x11-toolkits/py-gtk2 rebuilt with the NUMPY knob on), with both the stylus and eraser of my (dad's) tablet. (mypaint ignores the pad device so I removed it from xorg.conf again, see the wacom(4x) manpage and the input-wacom wiki.) Happy testing, and thanks to Hans! Juergen