summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@foss.st.com>2021-06-04 18:51:46 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2021-06-09 00:13:26 +0200
commit6b8d9c92fc5bebc190a3926be8bd1937ea459b0b (patch)
tree8f28d8da64905d370587d2137fcf8711bc893e5d
parented9720d0550693cd8a9087906cc8264f86f59fd7 (diff)
downloadu-boot-6b8d9c92fc5bebc190a3926be8bd1937ea459b0b.tar.gz
u-boot-6b8d9c92fc5bebc190a3926be8bd1937ea459b0b.tar.xz
u-boot-6b8d9c92fc5bebc190a3926be8bd1937ea459b0b.zip
cmd: Add dependency for ums command
Add the missing dependency for the command ums: - CONFIG_BLK: call of blk_* functions in usb_mass_storage.c - CONFIG_USB_GADGET: required to select CONFIG_USB_FUNCTION_MASS_STORAGE Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r--cmd/Kconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index f962bb7141..a9fb4eead2 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1346,8 +1346,11 @@ config CMD_ROCKUSB
config CMD_USB_MASS_STORAGE
bool "UMS usb mass storage"
select USB_FUNCTION_MASS_STORAGE
+ depends on BLK && USB_GADGET
help
- USB mass storage support
+ Enables the command "ums" and the USB mass storage support to the
+ export a block device: U-Boot, the USB device, acts as a simple
+ external hard drive plugged on the host USB port.
config CMD_PVBLOCK
bool "Xen para-virtualized block device"