Skip to content

Commit

Permalink
env: Kconfig: Add missing dependency for ENV_IS_IN_EXT4
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
Michal Simek authored and trini committed Aug 27, 2020
1 parent 7b56432 commit 0766178
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions env/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0766178

Please sign in to comment.