]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/Kconfig
kconfig: add Kconfig option for CMD_MII
[karo-tx-uboot.git] / common / Kconfig
index fd84fa08bd3efc2569ac4200684f26abca5ac205..1f361555dc15b3c3eabd682373622e72bc8fdd18 100644 (file)
@@ -53,6 +53,17 @@ config CMD_BOOTM
        help
          Boot an application image from the memory.
 
+config CMD_BOOTZ
+       bool "bootz"
+       default y
+       help
+         Boot a Linux kernel zImage.
+
+config CMD_BOOTCE
+       bool "bootce"
+       help
+         Boot a WindowsCE image.
+
 config CMD_GO
        bool "go"
        default y
@@ -81,6 +92,17 @@ config CMD_XIMG
 
 endmenu
 
+menu "DTB support"
+
+config OF_LIBFDT
+       bool "Enable FDT commands"
+
+config OF_BOARD_SETUP
+       bool "Support DT modifications by board code"
+       depends on OF_LIBFDT
+
+endmenu
+
 menu "Environment commands"
 
 config CMD_EXPORTENV
@@ -171,11 +193,37 @@ config CMD_FLASH
            erase - FLASH memory
            protect - enable or disable FLASH write protection
 
+config MTD_DEVICE
+       bool "MTD device support"
+
+config CMD_MTDPARTS
+       bool "MTD partitioning support"
+       default y
+       depends on MTD_DEVICE && (CMD_FLASH || CMD_NAND)
+
 config CMD_NAND
        bool "nand"
        help
          NAND support.
 
+config CMD_NAND_TRIMFFS
+       bool "Enable nand write.trimffs command"
+       help
+         Enable command to leave page sized runs of 0xff patterns in
+         erased state rather than overwriting them. This is required
+         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.
+
 config CMD_SPI
        bool "sspi"
        help
@@ -272,20 +320,25 @@ 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
          Acquire a network IP address using the link-local protocol
 
+config CMD_MII
+       bool "MII register access"
+       help
+         Support reading/writing ETH PHY registers via MII bus
+
 endmenu
 
 menu "Misc commands"
 
+config CMD_CACHE
+       bool "cache control"
+       help
+         Enable commands to switch data cache on/off.
+
 config CMD_TIME
        bool "time"
        help
@@ -314,3 +367,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