diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-04 10:03:50 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-23 10:09:42 -0500 |
commit | 0613c36a7a5973d58a50b764ee647099e80cc97d (patch) | |
tree | 0077e539fdd54654a1d401fd845e196e704d9509 /include/env_default.h | |
parent | fb55ac2cfe017b5f83d97f25e3ed2ceaa9946405 (diff) | |
download | u-boot-0613c36a7a5973d58a50b764ee647099e80cc97d.tar.gz u-boot-0613c36a7a5973d58a50b764ee647099e80cc97d.tar.bz2 u-boot-0613c36a7a5973d58a50b764ee647099e80cc97d.zip |
global: Migrate CONFIG_EXTRA_ENV_SETTINGS to CFG
Perform a simple rename of CONFIG_EXTRA_ENV_SETTINGS to CFG_EXTRA_ENV_SETTINGS
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/env_default.h')
-rw-r--r-- | include/env_default.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/env_default.h b/include/env_default.h index 3b7685ee26..c0df39d62f 100644 --- a/include/env_default.h +++ b/include/env_default.h @@ -118,8 +118,8 @@ const char default_environment[] = { /* This is created in the Makefile */ CONFIG_EXTRA_ENV_TEXT #endif -#ifdef CONFIG_EXTRA_ENV_SETTINGS - CONFIG_EXTRA_ENV_SETTINGS +#ifdef CFG_EXTRA_ENV_SETTINGS + CFG_EXTRA_ENV_SETTINGS #endif "\0" #else /* CONFIG_USE_DEFAULT_ENV_FILE */ |