diff options
| author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2025-06-09 21:26:42 +0200 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2025-06-20 12:15:08 -0600 |
| commit | fb5235239aad43c41d528b2e6c8bd6c7b390cde1 (patch) | |
| tree | d9d1d79bd1977b93f189a57cc404b0a810997018 /env/Kconfig | |
| parent | ffc4914703a2b897d51e3412703b1d4f42081b42 (diff) | |
env: Rename DEFAULT_ENV_FILE to ENV_DEFAULT_ENV_TEXT_FILE
Rename the variable and add ENV_ prefix, so that all configuration
options which are related to environment would have an CONFIG_ENV_
prefix. No functional change.
Also rename USE_DEFAULT_ENV_FILE to USE_ENV_DEFAULT_ENV_TEXT_FILE .
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'env/Kconfig')
| -rw-r--r-- | env/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/env/Kconfig b/env/Kconfig index 52f5cb86584..65ab8b6392d 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -749,7 +749,7 @@ config SCSI_ENV_PART_UUID help UUID of the SCSI partition that you want to store the environment in. -config USE_DEFAULT_ENV_FILE +config ENV_USE_DEFAULT_ENV_TEXT_FILE bool "Create default environment from file" help Normally, the default environment is automatically generated @@ -758,9 +758,9 @@ config USE_DEFAULT_ENV_FILE you can instead define the entire default environment in an external file. -config DEFAULT_ENV_FILE +config ENV_DEFAULT_ENV_TEXT_FILE string "Path to default environment file" - depends on USE_DEFAULT_ENV_FILE + depends on ENV_USE_DEFAULT_ENV_TEXT_FILE help The path containing the default environment. The format is the same as accepted by the mkenvimage tool: lines |
