diff options
author | Maxime Ripard | 2018-01-23 21:17:00 +0100 |
---|---|---|
committer | Tom Rini | 2018-01-27 09:21:57 -0500 |
commit | d282a1db6aead313649ad7be6d3ff0fb68fca4ef (patch) | |
tree | 3eb225b83c8c7592c5f1a5a6ba144405e2643a12 | |
parent | 1d4460871b46e0ed5c81ff7d8eea50e7fc9a66e5 (diff) |
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 <sjg@chromium.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
-rw-r--r-- | env/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/env/Kconfig b/env/Kconfig index a24370786b6..79662105529 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. |