diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-05-09 20:31:38 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-05-15 18:28:23 +0900 |
commit | 67e09e248fd3ffaa36e0481d78a31be4736d68c0 (patch) | |
tree | f3e3869e64591b66c6bb63bd9e4c3d3babb60364 | |
parent | d90e9458d7e7e7a44abe8477b562ec4961dd3cc6 (diff) | |
download | u-boot-67e09e248fd3ffaa36e0481d78a31be4736d68c0.zip u-boot-67e09e248fd3ffaa36e0481d78a31be4736d68c0.tar.gz u-boot-67e09e248fd3ffaa36e0481d78a31be4736d68c0.tar.bz2 |
blanche_defconfig: enable CONFIG_MMC
As commit 54925327fa11 ("mmc: move CONFIG_GENERIC_MMC to Kconfig")
addressed, this is one of the last weird defconfigs that define
CONFIG_GENERIC_MMC without CONFIG_MMC.
Now I took a closer look at this. Given that both CONFIG_CMD_MMC
and CONFIG_GENERIC_MMC are set for this defconfig, CONFIG_MMC should
be enabled.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | configs/blanche_defconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configs/blanche_defconfig b/configs/blanche_defconfig index 5664421..a963802 100644 --- a/configs/blanche_defconfig +++ b/configs/blanche_defconfig @@ -15,8 +15,7 @@ CONFIG_CMD_EXT2=y CONFIG_CMD_EXT4=y CONFIG_CMD_EXT4_WRITE=y CONFIG_CMD_FAT=y -# CONFIG_MMC is not set -CONFIG_GENERIC_MMC=y +CONFIG_MMC=y CONFIG_MTD_NOR_FLASH=y CONFIG_SPI_FLASH=y CONFIG_SPI_FLASH_BAR=y |