barebox/drivers/input/Kconfig
Lucas Stach 36ef69578c input: usb-kbd: depend on CONSOLE_FULL
Fixes:
In function `usb_kbd_probe':
(usb_kbd_probe): undefined reference to `console_set_active'

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2015-10-14 15:33:07 +02:00

58 lines
1.4 KiB
Text

#
# Input device configuration
#
menu "Input device support"
depends on !CONSOLE_NONE
config KEYBOARD_GPIO
bool "GPIO Buttons"
depends on GENERIC_GPIO
select POLLER
help
This driver implements support for buttons connected
to GPIO pins of various CPUs (and some other chips).
Say Y here if your device has buttons connected
directly to such GPIO pins. Your board-specific
setup logic must also provide a platform device,
with configuration data saying which GPIOs are used.
config KEYBOARD_IMX_KEYPAD
bool "IMX Keypad"
depends on ARCH_IMX
select POLLER
help
This driver implements support for buttons connected
to the IMX keypad matrix.
Say Y here if your device has buttons connected
to the IMX keypad matrix. Your board-specific
setup logic must also provide a 'matrix_keymap_data' structure,
defining the used keys.
config KEYBOARD_QT1070
tristate "Atmel AT42QT1070 Touch Sensor Chip"
depends on I2C && GENERIC_GPIO
select POLLER
help
Say Y here if you want to use Atmel AT42QT1070 QTouch
Sensor chip as input device.
config KEYBOARD_TWL6030
tristate "TWL6030 power button"
depends on MFD_TWL6030
select POLLER
help
Say Y here if you want to use TWL6030 power button as a key.
config KEYBOARD_USB
bool "USB keyboard"
depends on USB_HOST
depends on CONSOLE_FULL
select POLLER
help
This driver implements support for usb keyboard.
endmenu