cmd: Add dependency for ums command
authorPatrick Delaunay <patrick.delaunay@foss.st.com>
Fri, 4 Jun 2021 16:51:46 +0000 (18:51 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 8 Jun 2021 22:13:26 +0000 (00:13 +0200)
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>
cmd/Kconfig

index f962bb7..a9fb4ee 100644 (file)
@@ -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"