summaryrefslogtreecommitdiff
path: root/include/configs/efi-x86_payload.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-06-17 15:57:53 +0300
committerBin Meng <bmeng.cn@gmail.com>2018-06-24 03:56:04 +0300
commit1ab2c010879baff93c690be8d98d294e9ccfab94 (patch)
tree8b3e0f5da133892768ee0d34458e6bef6194b484 /include/configs/efi-x86_payload.h
parent6d02cf0562ead596b20ce23f102be5c3020c04f9 (diff)
downloadu-boot-1ab2c010879baff93c690be8d98d294e9ccfab94.tar.xz
x86: efi-x86_payload: Enable usb keyboard during boot
For boards that don't route serial port pins out, it's quite common to attach a USB keyboard as the input device, along with a monitor. However USB is not automatically started in the generic efi payload codes. This uses a payload specific last_stage_init() to start the USB bus, so that a USB keyboard can be used on the U-Boot shell. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/efi-x86_payload.h')
-rw-r--r--include/configs/efi-x86_payload.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/efi-x86_payload.h b/include/configs/efi-x86_payload.h
index 9c62fd24b8..1cf5c037e8 100644
--- a/include/configs/efi-x86_payload.h
+++ b/include/configs/efi-x86_payload.h
@@ -14,7 +14,7 @@
#define CONFIG_SYS_MONITOR_LEN (1 << 20)
-#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd\0" \
+#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd,usbkbd\0" \
"stdout=serial,vidconsole\0" \
"stderr=serial,vidconsole\0"