diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2007-05-07 16:16:29 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-05-08 01:41:29 -0400 |
commit | 4104d13fe0194736393d97c88ee045fb689c783b (patch) | |
tree | 1915a03fbad7541df368f0940387f0f15b7fc380 /drivers/input/tablet/Kconfig | |
parent | d2ada5597d33a9108acb2caf912f85cbc9caab1e (diff) |
Input: move USB tablets under drivers/input/tablet
This will allow concentrating all input devices in one place
in {menu|x|q}config.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/input/tablet/Kconfig')
-rw-r--r-- | drivers/input/tablet/Kconfig | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/drivers/input/tablet/Kconfig b/drivers/input/tablet/Kconfig new file mode 100644 index 000000000000..12dfb0eb3262 --- /dev/null +++ b/drivers/input/tablet/Kconfig | |||
@@ -0,0 +1,74 @@ | |||
1 | # | ||
2 | # Tablet driver configuration | ||
3 | # | ||
4 | menuconfig 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 | |||
12 | if INPUT_TABLET | ||
13 | |||
14 | config 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 | |||
26 | config 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 | |||
38 | config 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 | |||
50 | config 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 | |||
62 | config 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 | |||
74 | endif | ||