]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - cmd/Kconfig
cmd: add support for Qualcomm SPMI bus access
[karo-tx-uboot.git] / cmd / Kconfig
index d28da54ed6595403964a0079e4d9972d3a84a1eb..17808de716d447145cfa7209a6ed4102af651308 100644 (file)
@@ -388,7 +388,7 @@ config CMD_SF
          SPI Flash support
 
 config CMD_SPI
-       bool "sspi"
+       bool "spi"
        help
          SPI utility command.
 
@@ -404,6 +404,7 @@ config CMD_USB
 
 config CMD_DFU
        bool "dfu"
+       select USB_FUNCTION_DFU
        help
          Enables the command "dfu" which is used to have U-Boot create a DFU
          class device via USB.
@@ -430,6 +431,11 @@ config CMD_GPIO
        help
          GPIO support.
 
+config CMD_SPMI
+       bool "spmi"
+       help
+         SPMI bus utility command.
+
 endmenu
 
 
@@ -705,4 +711,16 @@ config CMD_FS_GENERIC
          fs types.
 endmenu
 
+config CMD_UBI
+       tristate "Enable UBI - Unsorted block images commands"
+       select CRC32
+       select MTD_UBI
+       help
+         UBI is a software layer above MTD layer which admits use of LVM-like
+         logical volumes on top of MTD devices, hides some complexities of
+         flash chips like wear and bad blocks and provides some other useful
+         capabilities. Please, consult the MTD web site for more details
+         (www.linux-mtd.infradead.org). Activate this option if you want
+         to use U-Boot UBI commands.
+
 endmenu