diff options
| author | Heinrich Schuchardt <[email protected]> | 2024-03-31 04:37:16 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2024-07-14 09:56:24 +0200 |
| commit | 5913c29fcbce9575fd6f6c1a45a019c733aca539 (patch) | |
| tree | abebdbe9ac3b47e07d39f5f93430b82e1c8867ba /env/Kconfig | |
| parent | 9436aab076a0e617944874b4ddc15d64a7d3efce (diff) | |
env: ENV_IS_IN_EXT4 should enable SYS_MMC_ENV_DEV
When enabling CONFIG_ENV_IS_IN_EXT4 the environment might be stored on
an mmc device similar to the CONFIG_ENV_IS_IN_FAT case.
Fixes: 7d080773347c ("Convert CONFIG_SYS_MMC_ENV_DEV et al to Kconfig")
Signed-off-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'env/Kconfig')
| -rw-r--r-- | env/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/env/Kconfig b/env/Kconfig index 451bab45ea7..031cf58186a 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -655,7 +655,7 @@ config SYS_RELOC_GD_ENV_ADDR config SYS_MMC_ENV_DEV int "mmc device number" - depends on ENV_IS_IN_MMC || ENV_IS_IN_FAT || \ + depends on ENV_IS_IN_MMC || ENV_IS_IN_FAT || ENV_IS_IN_EXT4 || \ CMD_MVEBU_BUBT || FMAN_ENET || QE || PHY_CORTINA default 0 help |
