diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-07-28 11:51:21 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-31 10:13:00 -0400 |
commit | a97d22ebba2305f2d0aee714544c72c6a53026d9 (patch) | |
tree | 11c843faeaeb7a2bdd1e180e2e135b11cf5817da /cmd/Kconfig | |
parent | 0115dd3a6a144e9c974e00a9f3f41c5bb053236e (diff) | |
download | u-boot-a97d22ebba2305f2d0aee714544c72c6a53026d9.tar.gz |
cmd: env: add env select command
Add the new command 'env select' to force the persistent storage
of environment, saved in gd->env_load_prio.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 498fd31b10..d7136b0e79 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -610,6 +610,11 @@ config CMD_NVEDIT_LOAD Load all environment variables from the compiled-in persistent storage. +config CMD_NVEDIT_SELECT + bool "env select" + help + Select the compiled-in persistent storage of environment variables. + endmenu menu "Memory commands" |