xref: /linux-6.15/drivers/input/tablet/Kconfig (revision 4104d13f)
1#
2# Tablet driver configuration
3#
4menuconfig INPUT_TABLET
5	bool "Tablets"
6	help
7	  Say Y here, and a list of supported tablets will be displayed.
8	  This option doesn't affect the kernel.
9
10	  If unsure, say Y.
11
12if INPUT_TABLET
13
14config TABLET_USB_ACECAD
15	tristate "Acecad Flair tablet support (USB)"
16	select USB
17	help
18	  Say Y here if you want to use the USB version of the Acecad Flair
19	  tablet.  Make sure to say Y to "Mouse support"
20	  (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
21	  (CONFIG_INPUT_EVDEV) as well.
22
23	  To compile this driver as a module, choose M here: the
24	  module will be called acecad.
25
26config TABLET_USB_AIPTEK
27	tristate "Aiptek 6000U/8000U tablet support (USB)"
28	select USB
29	help
30	  Say Y here if you want to use the USB version of the Aiptek 6000U
31	  or Aiptek 8000U tablet.  Make sure to say Y to "Mouse support"
32	  (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
33	  (CONFIG_INPUT_EVDEV) as well.
34
35	  To compile this driver as a module, choose M here: the
36	  module will be called aiptek.
37
38config TABLET_USB_GTCO
39        tristate "GTCO CalComp/InterWrite USB Support"
40        depends on USB && INPUT
41        help
42          Say Y here if you want to use the USB version of the GTCO
43          CalComp/InterWrite Tablet.  Make sure to say Y to "Mouse support"
44          (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
45          (CONFIG_INPUT_EVDEV) as well.
46
47          To compile this driver as a module, choose M here: the
48          module will be called gtco.
49
50config TABLET_USB_KBTAB
51	tristate "KB Gear JamStudio tablet support (USB)"
52	select USB
53	help
54	  Say Y here if you want to use the USB version of the KB Gear
55	  JamStudio tablet.  Make sure to say Y to "Mouse support"
56	  (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
57	  (CONFIG_INPUT_EVDEV) as well.
58
59	  To compile this driver as a module, choose M here: the
60	  module will be called kbtab.
61
62config TABLET_USB_WACOM
63	tristate "Wacom Intuos/Graphire tablet support (USB)"
64	select USB
65	help
66	  Say Y here if you want to use the USB version of the Wacom Intuos
67	  or Graphire tablet.  Make sure to say Y to "Mouse support"
68	  (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
69	  (CONFIG_INPUT_EVDEV) as well.
70
71	  To compile this driver as a module, choose M here: the
72	  module will be called wacom.
73
74endif
75