I want this patch included in the package.

It works with the tablet, WALTOP International Corp. Slim Tablet, two pen buttons are errored currently (both work like mouse middle click ?button 3?), but pressure and button 1 at pen tip work.

The patch is one line to include the WALTOP vendor id, written generically at http://wiki.archlinux.org/index.php/Wacom#WALTOP_tablet_support_by_the_Wacom_drivers

Another AUR package has this patch but the package failed to get the controllers from linuxwacom. awx was maintainer. http://aur.archlinux.org/packages.php?ID=28999

I think other users may like the convenience of this patch included for their tablet.



I wrote the patch for the current package linuxwacom 0.8.4-9. It is attached, to include it in the PKGBUILD add something like,

 #patch to work with tablet WALTOP
 # tested WALTOP International Corp. Slim Tablet
 patch -Np1 -i ${srcdir}/linuxwacom-0.8.4_3-waltop.patch || return



andrew
diff -aur a/src/xdrv/wcmUSB.c b/src/xdrv/wcmUSB.c
--- a/src/xdrv/wcmUSB.c 2009-09-16 21:54:04.000000000 +0200
+++ b/src/xdrv/wcmUSB.c 2009-11-06 03:40:27.904101443 +0200

@@ -527,7 +527,7 @@
        ioctl(local->fd, EVIOCGNAME(sizeof(id)), id);
 
        /* vendor is wacom */
-       if (sID[1] == 0x056A)
+       if (sID[1] == 0x056A || sID[1] == 0x172f)
        {
                common->tablet_id = sID[2];

Reply via email to