]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - common/Kconfig
kconfig: add Kconfig option for CMD_ROMUPDATE
[karo-tx-uboot.git] / common / Kconfig
index 72f7a07e96e069dc41b4bdbce94b51b963a8cca8..b6a4554d828149c5a2fa4fd9b94977a2e52dc5ce 100644 (file)
@@ -129,26 +129,6 @@ config CMD_SAVEENV
 
 endmenu
 
-menu "Environment configuration settings"
-
-choice
-       prompt "Select environment non-volatile storage"
-
-config ENV_IS_NOWHERE
-       bool "do not store environment"
-
-config ENV_IS_IN_NAND
-       bool "store environment in NAND"
-       depends on NAND
-
-config ENV_IS_IN_MMC
-       bool "store environment in MMC"
-       depends on MMC
-
-endchoice
-
-endmenu
-
 menu "Memory commands"
 
 config CMD_MEMORY
@@ -234,8 +214,13 @@ config CMD_NAND_TRIMFFS
          for using NAND flash filesystems on NAND controllers with
          a non-0xff ECC code for all 0xff data.
 
+config CMD_ROMUPDATE
+       bool
+       depends on NAND
+
 config CMD_MMC
        bool "mmc/sd"
+       select PARTITIONS
        help
          MMC/SD support.
 
@@ -335,11 +320,6 @@ config CMD_DNS
        help
          Lookup the IP of a hostname
 
-config CMD_DNS
-       bool "dns"
-       help
-         Lookup the IP of a hostname
-
 config CMD_LINK_LOCAL
        bool "linklocal"
        help
@@ -382,3 +362,36 @@ config CMD_SETGETDCR
 endmenu
 
 endmenu
+
+menu "Environment configuration settings"
+
+choice
+       prompt "Select environment non-volatile storage"
+
+config ENV_IS_NOWHERE
+       bool "do not store environment"
+
+config ENV_IS_IN_NAND
+       bool "store environment in NAND"
+       depends on NAND
+
+config ENV_IS_IN_MMC
+       bool "store environment in MMC"
+       depends on MMC
+
+config ENV_IS_IN_SPI_FLASH
+       bool "store environment in SPI flash"
+
+endchoice
+
+endmenu
+
+menu "Display configuration"
+
+config LCD
+       bool "LCD support"
+
+config DISPLAY_BOARDINFO
+       bool "Display board info"
+
+endmenu