On 4/1/25 10:00, Varadarajan Narayanan wrote:
Enable CONFIG_ENV_IS_IN_UFS to store environment variables in UFS.
Set env variables partition name as 'ubootenv'.
Signed-off-by: Varadarajan Narayanan <[email protected]>
---
configs/qcs9100_defconfig | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/configs/qcs9100_defconfig b/configs/qcs9100_defconfig
index 10ff4d25398..d56f08f0ad0 100644
--- a/configs/qcs9100_defconfig
+++ b/configs/qcs9100_defconfig
@@ -14,5 +14,9 @@ CONFIG_DEBUG_UART_CLOCK=14745600
# Address where U-Boot will be loaded
CONFIG_TEXT_BASE=0xaf000000
CONFIG_REMAKE_ELF=y
+CONFIG_ENV_IS_IN_UFS=y
+CONFIG_SYS_UFS_ENV_PART="ubootenv"
CONFIG_DEFAULT_DEVICE_TREE="qcom/qcs9100-ride-r3"
+# CONFIG_ENV_IS_DEFAULT is not set
+# CONFIG_ENV_IS_NOWHERE is not set
That newline in the middle is weird.
You should start to use
make savedefconfig
cp defconfig configs/qcs9100_defconfig
to have it aligned with Kconfig layout.
M