]> 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 97e5e4ef24335e23f2b5fc2f80b6d342d1e830b5..1f361555dc15b3c3eabd682373622e72bc8fdd18 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,6 +214,10 @@ 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
@@ -341,6 +325,11 @@ config CMD_LINK_LOCAL
        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"
@@ -378,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