X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=cmd%2FKconfig;h=17808de716d447145cfa7209a6ed4102af651308;hb=05a06bc85efddde9c6d114ff120c6ecfd9dee2a9;hp=d51645c634e0f8601f92a9c26994ec6af736d5ff;hpb=c98dc5a13399414fb651a80d05fa682236c4444e;p=karo-tx-uboot.git diff --git a/cmd/Kconfig b/cmd/Kconfig index d51645c634..17808de716 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -13,7 +13,6 @@ config CMDLINE config HUSH_PARSER bool "Use hush shell" - select SYS_HUSH_PARSER depends on CMDLINE help This option enables the "hush" shell (from Busybox) as command line @@ -24,11 +23,6 @@ config HUSH_PARSER If disabled, you get the old, much simpler behaviour with a somewhat smaller memory footprint. -config SYS_HUSH_PARSER - bool - help - Backward compatibility. - config SYS_PROMPT string "Shell prompt" default "=> " @@ -38,6 +32,12 @@ config SYS_PROMPT menu "Autoboot options" +config AUTOBOOT + bool "Autoboot" + default y + help + This enables the autoboot. See doc/README.autoboot for detail. + config AUTOBOOT_KEYED bool "Stop autobooting via specific input key / string" default n @@ -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