From d282a1db6aead313649ad7be6d3ff0fb68fca4ef Mon Sep 17 00:00:00 2001 From: Maxime Ripard Date: Tue, 23 Jan 2018 21:17:00 +0100 Subject: [PATCH] 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 --- env/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/env/Kconfig b/env/Kconfig index a243707..7966210 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.