diff options
| author | Michal Simek <[email protected]> | 2020-08-19 10:44:23 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-08-27 11:26:58 -0400 |
| commit | 076617847a2cfa5a7b16fd2b729091c5bf2d5b78 (patch) | |
| tree | 031e31291d1315aaf4b8ed8026961c969bff379d /env | |
| parent | 7b56432c7bc548194bc7c5fa9494392e9a24048a (diff) | |
env: Kconfig: Add missing dependency for ENV_IS_IN_EXT4
ENV_IS_IN_EXT4 also need to enable FS_EXT4 which is not covered in Kconfig.
Kconfig reports this as:
WARNING: unmet direct dependencies detected for EXT4_WRITE
Depends on [n]: FS_EXT4 [=n]
Selected by [y]:
- ENV_IS_IN_EXT4 [=y] && !CHAIN_OF_TRUST [=n]
Signed-off-by: Michal Simek <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
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 af4d9cbaa4d..b59ba310ec3 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -72,6 +72,7 @@ config ENV_IS_IN_FAT config ENV_IS_IN_EXT4 bool "Environment is in a EXT4 filesystem" depends on !CHAIN_OF_TRUST + select FS_EXT4 select EXT4_WRITE help Define this if you want to use the EXT4 file system for the environment. |
