diff options
author | Simon Glass <sjg@chromium.org> | 2021-10-21 21:08:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-11-16 14:35:08 -0500 |
commit | 1df02d1d0152b5029e96517f7a7dc1c389610b66 (patch) | |
tree | bbc33140ede55b24adeb9b8f1a9a0b4ae6db7848 /doc | |
parent | f501bb4c2aa8ba6dd6260f961e788eb46c0a36b3 (diff) | |
download | u-boot-1df02d1d0152b5029e96517f7a7dc1c389610b66.zip u-boot-1df02d1d0152b5029e96517f7a7dc1c389610b66.tar.gz u-boot-1df02d1d0152b5029e96517f7a7dc1c389610b66.tar.bz2 |
doc: Mention CONFIG_DEFAULT_ENV_FILE
Add mention of this option since it does a similar thing to the text
environment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Suggested-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Reviewed-by: Marek BehĂșn <marek.behun@nic.cz>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/usage/environment.rst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/usage/environment.rst b/doc/usage/environment.rst index 043c02d..6f3066e 100644 --- a/doc/usage/environment.rst +++ b/doc/usage/environment.rst @@ -458,3 +458,18 @@ The signature of the callback functions is:: include/search.h The return value is 0 if the variable change is accepted and 1 otherwise. + + +External environment file +------------------------- + +The `CONFIG_USE_DEFAULT_ENV_FILE` option provides a way to bypass the +environment generation in U-Boot. If enabled, then `CONFIG_DEFAULT_ENV_FILE` +provides the name of a file which is converted into the environment, +completely bypassing the standard environment variables in `env_default.h`. + +The format is the same as accepted by the mkenvimage tool, with lines containing +key=value pairs. Blank lines and lines beginning with # are ignored. + +Future work may unify this feature with the text-based environment, perhaps +moving the contents of `env_default.h` to a text file. |