diff options
author | Simon Glass <sjg@chromium.org> | 2015-11-11 10:05:43 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-11-19 20:13:41 -0700 |
commit | 6b44ae6b06967cefd6dbc1993827593341fd62f7 (patch) | |
tree | cf450b7527041cbdfd0891b62537236dc394fad2 /arch/x86/Kconfig | |
parent | b0abfeff982a022d8198ef526b96d57037fe0c14 (diff) | |
download | u-boot-6b44ae6b06967cefd6dbc1993827593341fd62f7.tar.gz u-boot-6b44ae6b06967cefd6dbc1993827593341fd62f7.tar.bz2 u-boot-6b44ae6b06967cefd6dbc1993827593341fd62f7.zip |
x86: Add an i8042 device for boards that have it
Some boards have an i8042 device. Enable the driver for all x86 boards, and
add a device tree node for those which may have this keyboard.
Also adjust the configuration so that i8042 is always separate from the VGA,
and rename the stdin driver accordingly. With this commit the keyboard will
not work, but it is fixed in the next commit.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 8914be34e6..14ab98ef62 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -435,6 +435,12 @@ config I8254_TIMER Intel 8254 timer contains three counters which have fixed uses. Include this to have U-Boot set up the timer correctly. +config I8042_KEYB + default y + +config DM_KEYBOARD + default y + source "arch/x86/lib/efi/Kconfig" endmenu |