]> git.sur5r.net Git - u-boot/commitdiff
cmd: nand: Make the NAND options default to NAND_SUNXI
authorMaxime Ripard <maxime.ripard@free-electrons.com>
Fri, 3 Mar 2017 14:13:30 +0000 (15:13 +0100)
committerJagan Teki <jagan@amarulasolutions.com>
Fri, 7 Apr 2017 05:53:46 +0000 (11:23 +0530)
If we depend on the ARCH_SUNXI configuration option, the boards that do not
have NAND support enabled (with the associated options) will not compile
anymore.

Depend on the NAND driver configuration option to make sure that is not the
case.

Reported-by: Chen-Yu Tsai <wens@csie.org>
Tested-by: Chen-Yu Tsai <wens@csie.org>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
cmd/Kconfig

index c9b17f0e621faef3ace4d25151aa6b393831b612..661ae7a98c2eb19ebebe1b258cfb9bb4d19e6bcb 100644 (file)
@@ -452,7 +452,7 @@ config CMD_MMC
 
 config CMD_NAND
        bool "nand"
-       default y if ARCH_SUNXI
+       default y if NAND_SUNXI
        help
          NAND support.
 
@@ -847,7 +847,7 @@ config CMD_UBI
        tristate "Enable UBI - Unsorted block images commands"
        select CRC32
        select MTD_UBI
-       default y if ARCH_SUNXI
+       default y if NAND_SUNXI
        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
@@ -862,7 +862,7 @@ config CMD_UBIFS
        select CRC32
        select RBTREE if ARCH_SUNXI
        select LZO if ARCH_SUNXI
-       default y if ARCH_SUNXI
+       default y if NAND_SUNXI
        help
          UBIFS is a file system for flash devices which works on top of UBI.