From: Jan Kiszka Date: Tue, 28 Feb 2023 18:19:14 +0000 (+0100) Subject: iot2050: Add CFG_ENV_FLAGS_LIST_STATIC X-Git-Tag: baikal/mips/sdk6.2~4^2~3^2~175^2~19^2~24 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=6b25cefec7476d3a7a79e6eadc7ccde812a4ebd0;p=uboot.git 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 --- 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 +#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 */