From: Maxime Ripard Date: Tue, 23 Jan 2018 20:17:00 +0000 (+0100) Subject: env: mmc: depends on the MMC framework X-Git-Tag: v2018.03-rc1~83 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d282a1db6aead313649ad7be6d3ff0fb68fca4ef;p=oweals%2Fu-boot.git env: mmc: depends on the MMC framework The raw MMC environment directly calls into the MMC framework. Make sure it's enabled before we can select it. Reviewed-by: Simon Glass Signed-off-by: Maxime Ripard Reviewed-by: Jaehoon Chung --- diff --git a/env/Kconfig b/env/Kconfig index a24370786b..7966210552 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -161,6 +161,7 @@ config ENV_IS_IN_FLASH config ENV_IS_IN_MMC bool "Environment in an MMC device" depends on !CHAIN_OF_TRUST + depends on MMC help Define this if you have an MMC device which you want to use for the environment.