Re: [DIGImend-users] Aiptek Media Tablet 14000u worked instantly (and almost complete) in linux 3.3
Brought to you by:
spb_nick
|
From: Nikolai K. <sp...@gm...> - 2012-05-17 09:53:58
|
On 05/17/2012 11:53 AM, Eduardo H. Silva wrote:
> The stylus works fine with the patch!
Great! So the side buttons don't paint anymore?
> But the scroll wheels don't, do I have to use the evdev driver like
> mentioned before in the thread, or is it supposed to all work just with
> this wacom driver?
Only the pen device should be handled by the wacom driver. This is achieved
by making it match with this snippet:
# Waltop tablets
Section "InputClass"
Identifier "Waltop class"
MatchProduct "WALTOP"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "wacom"
EndSection
Make sure no other "InputClass" section overrides it.
Then, you need to force X.org to use the evdev driver with the scroll
device, like this:
Section "InputClass"
Identifier "Waltop scroll class"
MatchIsPointer "off"
MatchIsKeyboard "off"
MatchIsTablet "off"
MatchIsTouchpad "off"
MatchIsTouchscreen "off"
MatchProduct "WALTOP"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Sincerely,
Nick
|