X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=cmd%2FKconfig;h=17808de716d447145cfa7209a6ed4102af651308;hb=05a06bc85efddde9c6d114ff120c6ecfd9dee2a9;hp=d69b817c827b3dd374efe871c8f4f0a5ffc459d6;hpb=2f6b47061d1979d241930843ff154c6f1f1ece58;p=karo-tx-uboot.git diff --git a/cmd/Kconfig b/cmd/Kconfig index d69b817c82..17808de716 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -114,6 +114,8 @@ config AUTOBOOT_STOP_STR_SHA256 endmenu +source "cmd/fastboot/Kconfig" + comment "Commands" menu "Info commands" @@ -165,6 +167,13 @@ config CMD_BOOTZ help Boot the Linux zImage +config CMD_BOOTI + bool "booti" + depends on ARM64 + default y + help + Boot an AArch64 Linux Kernel image from memory. + config CMD_BOOTEFI bool "bootefi" depends on EFI_LOADER @@ -379,7 +388,7 @@ config CMD_SF SPI Flash support config CMD_SPI - bool "sspi" + bool "spi" help SPI utility command. @@ -395,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. @@ -421,6 +431,11 @@ config CMD_GPIO help GPIO support. +config CMD_SPMI + bool "spmi" + help + SPMI bus utility command. + endmenu @@ -696,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