diff options
author | Alex Kiernan <alex.kiernan@gmail.com> | 2018-06-08 07:10:27 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-06-13 07:49:13 -0400 |
commit | 8df430d09bdce63afdd472d78e1eab137d8a1019 (patch) | |
tree | 5dd36ae7db7427c750862eec704e254bfa7f2de3 /env | |
parent | 919d25c9208d12a4fc3691972ad69ed4e40455ba (diff) | |
download | u-boot-8df430d09bdce63afdd472d78e1eab137d8a1019.tar.gz u-boot-8df430d09bdce63afdd472d78e1eab137d8a1019.tar.xz u-boot-8df430d09bdce63afdd472d78e1eab137d8a1019.zip |
env: Add !ENV_IS_IN_EXT4 dependency to ENV_IS_NOWHERE
If ENV_IS_IN_EXT4 is set you shouldn't be able to select ENV_IS_NOWHERE.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Petr Vorel <petr.vorel@gmail.com>
Diffstat (limited to 'env')
-rw-r--r-- | env/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/env/Kconfig b/env/Kconfig index ec66c1346a..8618376f25 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -3,6 +3,7 @@ menu "Environment" config ENV_IS_NOWHERE bool "Environment is not stored" depends on !ENV_IS_IN_EEPROM + depends on !ENV_IS_IN_EXT4 depends on !ENV_IS_IN_FAT depends on !ENV_IS_IN_FLASH depends on !ENV_IS_IN_MMC |