diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-04-04 13:35:07 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-04 09:54:31 -0400 |
commit | ee299561446d89037e236d74c2a38f862d2eaf75 (patch) | |
tree | 37cdd8507dc1be677da6a0238834625ba38791f2 | |
parent | a0da06d2f853b7f20caec41ba7c7d8cdd73e55fd (diff) | |
download | u-boot-WIP/04Apr2021.zip u-boot-WIP/04Apr2021.tar.gz u-boot-WIP/04Apr2021.tar.bz2 |
cmd: CMD_USB depends on USBWIP/04Apr2021
The usb command cannot be compiled with CONFIG_USB=n:
ld.bfd: cmd/usb.c:660: undefined reference to `usb_stop'
ld.bfd: cmd/usb.c:663: undefined reference to `usb_started'
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index eff238c..863b7f9 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1309,6 +1309,7 @@ config CMD_UNIVERSE config CMD_USB bool "usb" + depends on USB select HAVE_BLOCK_DEVICE help USB support. |