summaryrefslogtreecommitdiff
path: root/include/env_default.h
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-04-14 15:58:31 -0600
committerTom Rini <[email protected]>2024-04-14 15:58:31 -0600
commitb03b49046af5dfca599d2ce8f0aafed89b97aa91 (patch)
tree36f06c2f124f8181549bc57a59777976ed1eaee1 /include/env_default.h
parent57cb92de7a9d01be1ce72af003651efc80ac67e2 (diff)
parent63f6a449bffe46beca89580d3efa48e5d041025c (diff)
Merge https://source.denx.de/u-boot/custodians/u-boot-usb
Diffstat (limited to 'include/env_default.h')
-rw-r--r--include/env_default.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/env_default.h b/include/env_default.h
index 2ca4a087d3b..8ee500d1709 100644
--- a/include/env_default.h
+++ b/include/env_default.h
@@ -99,6 +99,17 @@ const char default_environment[] = {
#ifdef CONFIG_SYS_SOC
"soc=" CONFIG_SYS_SOC "\0"
#endif
+#ifdef CONFIG_USB_HOST
+ "usb_ignorelist="
+#ifdef CONFIG_USB_KEYBOARD
+ /* Ignore Yubico devices. Currently only a single USB keyboard device is
+ * supported and the emulated HID keyboard Yubikeys present is useless
+ * as keyboard.
+ */
+ "0x1050:*,"
+#endif
+ "\0"
+#endif
#ifdef CONFIG_ENV_IMPORT_FDT
"env_fdt_path=" CONFIG_ENV_FDT_PATH "\0"
#endif