]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
global: Migrate CONFIG_ENV_FLAGS_LIST_STATIC to CFG
authorTom Rini <trini@konsulko.com>
Sun, 4 Dec 2022 15:03:40 +0000 (10:03 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 23 Dec 2022 15:07:03 +0000 (10:07 -0500)
Perform a simple rename of CONFIG_ENV_FLAGS_LIST_STATIC to CFG_ENV_FLAGS_LIST_STATIC

Signed-off-by: Tom Rini <trini@konsulko.com>
README
include/configs/aristainetos2.h
include/configs/imx6q-bosch-acc.h
include/env_flags.h

diff --git a/README b/README
index 2944646665a850d1fa85873c30d15677d9c6eb64..e19aa1f722c195ca28d728edf4e40f220b6d7e1c 100644 (file)
--- a/README
+++ b/README
@@ -1066,7 +1066,7 @@ The following options need to be configured:
                The same can be accomplished in a more flexible way
                for any variable by configuring the type of access
                to allow for those variables in the ".flags" variable
-               or define CONFIG_ENV_FLAGS_LIST_STATIC.
+               or define CFG_ENV_FLAGS_LIST_STATIC.
 
 - Protected RAM:
                CONFIG_PRAM
@@ -1405,7 +1405,7 @@ Configuration Settings:
                Use buffered writes to flash.
 
 - CONFIG_ENV_FLAGS_LIST_DEFAULT
-- CONFIG_ENV_FLAGS_LIST_STATIC
+- CFG_ENV_FLAGS_LIST_STATIC
        Enable validation of the values given to environment variables when
        calling env set.  Variables can be restricted to only decimal,
        hexadecimal, or boolean.  If CONFIG_CMD_NET is also defined,
@@ -1436,7 +1436,7 @@ Configuration Settings:
                Define this to a list (string) to define the ".flags"
                environment variable in the default or embedded environment.
 
-       - CONFIG_ENV_FLAGS_LIST_STATIC
+       - CFG_ENV_FLAGS_LIST_STATIC
                Define this to a list (string) to define validation that
                should be done if an entry is not found in the ".flags"
                environment variable.  To override a setting in the static
index 854135457153b7e665f6a7a5c2e4e5eaa062ec9b..ff213a41b8f4b3da51c39d41e1cd8d287080d33d 100644 (file)
 
 /* UBI support */
 
-#define CONFIG_ENV_FLAGS_LIST_STATIC "ethaddr:mw,serial#:sw,board_type:sw," \
+#define CFG_ENV_FLAGS_LIST_STATIC "ethaddr:mw,serial#:sw,board_type:sw," \
                "sysnum:dw,panel:sw,ipaddr:iw,serverip:iw"
 
 #endif                         /* __ARISTAINETOS2_CONFIG_H */
index 99da081cdae8644611b474497aab07223183ddc5..392f97050a65760b69b86e1dbab8de525116d76f 100644 (file)
@@ -45,7 +45,7 @@
        "save_env=env save; env save\0" \
        "altbootcmd=run handle_ustate; run switch_bootset; run save_env; run bootcmd\0"
 
-#define CONFIG_ENV_FLAGS_LIST_STATIC \
+#define CFG_ENV_FLAGS_LIST_STATIC \
        "bootset:bw," \
        "clone_pending:bw," \
        "endurance_test:bw," \
index 718d72773ca83aafe3d800c4a136ac375782ed6a..6bd574c2bdb13f6d20ba561ba2d66ece5f457c6b 100644 (file)
@@ -35,8 +35,8 @@ enum env_flags_varaccess {
 #define ENV_FLAGS_VARTYPE_LOC 0
 #define ENV_FLAGS_VARACCESS_LOC 1
 
-#ifndef CONFIG_ENV_FLAGS_LIST_STATIC
-#define CONFIG_ENV_FLAGS_LIST_STATIC ""
+#ifndef CFG_ENV_FLAGS_LIST_STATIC
+#define CFG_ENV_FLAGS_LIST_STATIC ""
 #endif
 
 #ifdef CONFIG_NET
@@ -87,7 +87,7 @@ enum env_flags_varaccess {
        NET_FLAGS \
        NET6_FLAGS \
        SERIAL_FLAGS \
-       CONFIG_ENV_FLAGS_LIST_STATIC
+       CFG_ENV_FLAGS_LIST_STATIC
 
 #ifdef CONFIG_CMD_ENV_FLAGS
 /*