Just in case some other Slackware user runs into the same issue...
I have a Fujitsu T900 which has a wacom-enabled screen. It worked
fine with 13.1, but the pen input was not functioning with 13.37.
I fixed it by creating /etc/udev/rules.d/10-wacom.rules
with the contents
ACTION!="add|change", GOTO="wacom_end"
# Match all wacom tablets with a serial ID starting with WACf or FUJ*
ATTRS{id}=="WACf*" ENV{NAME}="Serial Wacom Tablet", ENV{ID_INPUT}="1", ENV{ID_INPUT_TABLET}="1"
ATTRS{id}=="FUJ*" ENV{NAME}="Serial Wacom Tablet", ENV{ID_INPUT}="1", ENV{ID_INPUT_TABLET}="1"
LABEL="wacom_end"
(In case your newsreader mangles that, there are supposed to be 5
lines, the ATTRS lines are > 80 chars.)
To give credit where due, I found the answer here:
https://wiki.archlinux.org/index.php/Wacom_Tablet
The first ATTRS line appears to be the match for (at least some)
Thinkpad tablets, the second is for (at least some) Fujitsu tablets.
Cheers
Jim
Replies