diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-11-23 18:15:21 +0100 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@gmail.com> | 2019-11-25 13:28:53 +0100 |
commit | 87e91bccaee63d70fd3ada0bee5e861edf8967a5 (patch) | |
tree | 5f93115460f7082f9efdc2020a35c5ada55665df /drivers/usb | |
parent | 3352c2114b69aeadf54feb8140071a55fb580c30 (diff) | |
download | u-boot-87e91bccaee63d70fd3ada0bee5e861edf8967a5.zip u-boot-87e91bccaee63d70fd3ada0bee5e861edf8967a5.tar.gz u-boot-87e91bccaee63d70fd3ada0bee5e861edf8967a5.tar.bz2 |
usb: kbd: implement special keys
Provide support for F1-F12, Insert, Delete, Home, End, Page Up, Page Down.
As this leads to a size increase provide a customizing setting
CONFIG_USB_KEYBOARD_FN_KEYS.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig index 9af78e8..bea4a92 100644 --- a/drivers/usb/Kconfig +++ b/drivers/usb/Kconfig @@ -100,6 +100,12 @@ config USB_KEYBOARD if USB_KEYBOARD +config USB_KEYBOARD_FN_KEYS + bool "USB keyboard function key support" + help + Say Y here if you want support for keys F1 - F12, INS, HOME, DELETE, + END, PAGE UP, and PAGE DOWN. + choice prompt "USB keyboard polling" default SYS_USB_EVENT_POLL |