Kconfig: Move VERSION_VARIABLE under environment

This relates to the environment so should not be at the top level. Move
it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2020-09-10 20:21:24 -06:00 committed by Tom Rini
parent 7e349e9669
commit bc438b6e9a
2 changed files with 9 additions and 10 deletions

View File

@ -532,16 +532,6 @@ endmenu
endmenu # Init options
config VERSION_VARIABLE
bool "add U-Boot environment variable vers"
default n
help
If this variable is defined, an environment variable
named "ver" is created by U-Boot showing the U-Boot
version as printed by the "version" command.
Any change to this variable will be reverted at the
next reset.
config BOUNCE_BUFFER
bool "Include bounce buffer API"
help

9
env/Kconfig vendored
View File

@ -773,4 +773,13 @@ config TPL_ENV_IS_IN_FLASH
endif
config VERSION_VARIABLE
bool "Add a 'ver' environment variable with the U-Boot version"
help
If this variable is defined, an environment variable
named "ver" is created by U-Boot showing the U-Boot
version as printed by the "version" command.
Any change to this variable will be reverted at the
next reset.
endmenu