summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-08-12 11:31:09 -0600
committerTom Rini <[email protected]>2025-08-14 09:17:02 -0600
commit6531aeed374f0818d7259eaa401b92b976723fb2 (patch)
treeea5c0a57ae50793ee89b8f08dfa85e6216836993
parent5e2ade730a82192834c6652cb0b1d363f8c51b41 (diff)
env: Correct Kconfig type for ENV_MMC_SW_PARTITION
As part of renaming environment related Kconfig options, ENV_MMC_SW_PARTITION was inadvertently changed from a string to a bool. Correct this. Fixes: ffc4914703a2 ("env: Rename ENV_MMC_PARTITION to ENV_MMC_SW_PARTITION") Reviewed-by: Marek Vasut <[email protected]> Signed-off-by: Tom Rini <[email protected]>
-rw-r--r--env/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/env/Kconfig b/env/Kconfig
index 1df7ebd547e..03c189b7266 100644
--- a/env/Kconfig
+++ b/env/Kconfig
@@ -732,7 +732,7 @@ config ENV_MMC_USE_SW_PARTITION
depends on ENV_IS_IN_MMC
config ENV_MMC_SW_PARTITION
- bool "SD/MMC environment software partition name"
+ string "SD/MMC environment software partition name"
depends on ENV_MMC_USE_SW_PARTITION
help
SD/MMC software partition name used to save environment variables.