b4e05923f9
Recent version of xf86-input-wacom no longer support directly accessing serial tablets. Instead xf86-input-wacom now expects all wacom tablets to be driven by the kernel and to show up as evdev devices. This has caused old serial Wacom tablets to stop working for people who still have such tablets. Julian Squires has written a serio input driver to fix this: https://github.com/tokenrove/wacom-serial-iv This is a cleaned up version of this driver with improved Graphire support (I own an old Graphire myself). Signed-off-by: Julian Squires <julian@cipht.net> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
103 lines
3.1 KiB
Plaintext
103 lines
3.1 KiB
Plaintext
#
|
|
# Tablet driver configuration
|
|
#
|
|
menuconfig INPUT_TABLET
|
|
bool "Tablets"
|
|
help
|
|
Say Y here, and a list of supported tablets will be displayed.
|
|
This option doesn't affect the kernel.
|
|
|
|
If unsure, say Y.
|
|
|
|
if INPUT_TABLET
|
|
|
|
config TABLET_USB_ACECAD
|
|
tristate "Acecad Flair tablet support (USB)"
|
|
depends on USB_ARCH_HAS_HCD
|
|
select USB
|
|
help
|
|
Say Y here if you want to use the USB version of the Acecad Flair
|
|
tablet. Make sure to say Y to "Mouse support"
|
|
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
|
|
(CONFIG_INPUT_EVDEV) as well.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called acecad.
|
|
|
|
config TABLET_USB_AIPTEK
|
|
tristate "Aiptek 6000U/8000U and Genius G_PEN tablet support (USB)"
|
|
depends on USB_ARCH_HAS_HCD
|
|
select USB
|
|
help
|
|
Say Y here if you want to use the USB version of the Aiptek 6000U,
|
|
Aiptek 8000U or Genius G-PEN 560 tablet. Make sure to say Y to
|
|
"Mouse support" (CONFIG_INPUT_MOUSEDEV) and/or "Event interface
|
|
support" (CONFIG_INPUT_EVDEV) as well.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called aiptek.
|
|
|
|
config TABLET_USB_GTCO
|
|
tristate "GTCO CalComp/InterWrite USB Support"
|
|
depends on USB && INPUT
|
|
help
|
|
Say Y here if you want to use the USB version of the GTCO
|
|
CalComp/InterWrite Tablet. Make sure to say Y to "Mouse support"
|
|
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
|
|
(CONFIG_INPUT_EVDEV) as well.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called gtco.
|
|
|
|
config TABLET_USB_HANWANG
|
|
tristate "Hanwang Art Master III tablet support (USB)"
|
|
depends on USB_ARCH_HAS_HCD
|
|
select USB
|
|
help
|
|
Say Y here if you want to use the USB version of the Hanwang Art
|
|
Master III tablet.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called hanwang.
|
|
|
|
config TABLET_USB_KBTAB
|
|
tristate "KB Gear JamStudio tablet support (USB)"
|
|
depends on USB_ARCH_HAS_HCD
|
|
select USB
|
|
help
|
|
Say Y here if you want to use the USB version of the KB Gear
|
|
JamStudio tablet. Make sure to say Y to "Mouse support"
|
|
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
|
|
(CONFIG_INPUT_EVDEV) as well.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called kbtab.
|
|
|
|
config TABLET_USB_WACOM
|
|
tristate "Wacom Intuos/Graphire tablet support (USB)"
|
|
depends on USB_ARCH_HAS_HCD
|
|
select POWER_SUPPLY
|
|
select USB
|
|
select NEW_LEDS
|
|
select LEDS_CLASS
|
|
help
|
|
Say Y here if you want to use the USB version of the Wacom Intuos
|
|
or Graphire tablet. Make sure to say Y to "Mouse support"
|
|
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
|
|
(CONFIG_INPUT_EVDEV) as well.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called wacom.
|
|
|
|
config TABLET_SERIAL_WACOM4
|
|
tristate "Wacom protocol 4 serial tablet support"
|
|
select SERIO
|
|
help
|
|
Say Y here if you want to use Wacom protocol 4 serial tablets.
|
|
E.g. serial versions of the Cintiq, Graphire or Penpartner.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called wacom_serial4.
|
|
|
|
endif
|