Just to share a workaround reported by Frank.  If anuone else had/has the same issue, please try Frank's script.  Let us know if it helps or not.  If I get more positive feedback, I'll add the script to the website.
 
Ping
 
P.S.,  Thanks Frank for your effort.
 
On 8/26/06, demolishun <[EMAIL PROTECTED]> wrote:
Hello,
I think I have created a work around for a problem I am having setting
up the device symlink via udev.
First the important stuff:
I am running Debian 3.1
Custom compiled kernel 2.6.17.8 (compiled to get the Wacom driver working)

If I try the udev rule you provide:

KERNEL="event*", SYSFS{idVendor}="056a", NAME="input/%k", SYMLINK="input/wacom%e"


This does not seem to work.  For some reason when udev looks at the
"event*" information it does not have idVendor available or idProduct.
If I change the KERNEL="event*" to BUS="usb" then it does have the
idVendor and idProduct available.

So I wrote a script (/root/udev/wacom.sh) to detect my intuos3 4x5:
/#!/bin/sh
# Hack to check if intuos3 is being connected.
#
export VendorID=`cat /sys/${DEVPATH}/../id/vendor`
export ProductID=`cat /sys/${DEVPATH}/../id/product`
logger $VendorID:$ProductID
echo $VendorID:$ProductID

/I added the logger entry so that I can debug the connection.  It is
also handy to make sure of what to put in the udev rule:
/KERNEL="event*" \
PROGRAM="/root/udev/wacom.sh", \
RESULT="056a:00b0", \
NAME="input/%k", \
SYMLINK="input/wacom1"/

Not particularly elegant, but it works.  I don't know if this is a
driver, kernel, driver+kernel, distribution, etc problem.  However, I
hope this will help in fixing whatever needs to be fixed.  Let me know
if you would like me to test anything.  There is probably a better place
to put the wacom.sh file, but this works for now.

Thanks for writing this driver,
Frank Carney

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Linuxwacom-discuss mailing list
Linuxwacom-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxwacom-discuss

Reply via email to