mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
1afca2b66a
This adds a driver for the Pegasus Notetaker Pen. When connected, this uses the Pen as an input tablet. This device was sold in various different brandings, for example "Pegasus Mobile Notetaker M210", "Genie e-note The Notetaker", "Staedtler Digital ballpoint pen 990 01", "IRISnotes Express" or "NEWLink Digital Note Taker". Here's an example, so that you know what we are talking about: http://www.genie-online.de/genie-e-note-2/ https://pegatech.blogspot.com/ seems to be a remaining official resource. This device can also transfer saved (offline recorded handwritten) data and there are userspace programs that do this, see https://launchpad.net/m210 (Well, alternatively there are really fast scanners out there :) It's *really* fun to use as an input tablet though! So let's support this for everybody. Signed-off-by: Martin Kepplinger <martink@posteo.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
102 lines
3.1 KiB
Plaintext
102 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_PEGASUS
|
|
tristate "Pegasus Mobile Notetaker Pen input tablet support"
|
|
depends on USB_ARCH_HAS_HCD
|
|
select USB
|
|
help
|
|
Say Y here if you want to use the Pegasus Mobile Notetaker,
|
|
also known as:
|
|
Genie e-note The Notetaker,
|
|
Staedtler Digital ballpoint pen 990 01,
|
|
IRISnotes Express or
|
|
NEWLink Digital Note Taker.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called pegasus_notetaker.
|
|
|
|
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
|