summaryrefslogtreecommitdiff
path: root/include/configs
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2023-02-28 19:19:14 +0100
committerTom Rini <trini@konsulko.com>2023-03-29 11:58:26 -0400
commit08cba536eff077e273fb06ea56d7383552876df9 (patch)
treec05d2cac6e749c83d2cd9976cb85b102a059d7d9 /include/configs
parent4578095f1bef5f60923c58bf2560d12e6cfa2462 (diff)
downloadu-boot-08cba536eff077e273fb06ea56d7383552876df9.tar.gz
iot2050: Add CFG_ENV_FLAGS_LIST_STATIC
Will be needed when CONFIG_ENV_WRITEABLE_LIST is enabled. The listed variables shall remain writable, for informational purposes - they have to be considered untrusted because the persistent U-Boot env is not protected. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Diffstat (limited to 'include/configs')
-rw-r--r--include/configs/iot2050.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/configs/iot2050.h b/include/configs/iot2050.h
index 8dfeaddf54..217719472e 100644
--- a/include/configs/iot2050.h
+++ b/include/configs/iot2050.h
@@ -40,4 +40,11 @@
#include <configs/ti_armv7_common.h>
+#ifdef CONFIG_ENV_WRITEABLE_LIST
+#define CFG_ENV_FLAGS_LIST_STATIC \
+ "board_uuid:sw,board_name:sw,board_serial:sw,board_a5e:sw," \
+ "mlfb:sw,fw_version:sw,seboot_version:sw," \
+ "eth1addr:mw,eth2addr:mw,watchdog_timeout_ms:dw,boot_targets:sw"
+#endif
+
#endif /* __CONFIG_IOT2050_H */