mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 07:04:28 +00:00
Convert CONFIG_CMD_ENV_CALLBACK to Kconfig
This converts the following to Kconfig: CONFIG_CMD_ENV_CALLBACK Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
dcab138793
commit
a55d29d2ac
7 changed files with 11 additions and 3 deletions
1
README
1
README
|
@ -833,7 +833,6 @@ The following options need to be configured:
|
|||
CONFIG_CMD_ECHO echo arguments
|
||||
CONFIG_CMD_EDITENV edit env variable
|
||||
CONFIG_CMD_ELF * bootelf, bootvx
|
||||
CONFIG_CMD_ENV_CALLBACK * display details about env callbacks
|
||||
CONFIG_CMD_ENV_FLAGS * display details about env flags
|
||||
CONFIG_CMD_ENV_EXISTS * check existence of env variable
|
||||
CONFIG_CMD_EXPORTENV * export the environment
|
||||
|
|
|
@ -314,6 +314,14 @@ config CMD_ENV_EXISTS
|
|||
Check if a variable is defined in the environment for use in
|
||||
shell scripting.
|
||||
|
||||
config CMD_ENV_CALLBACK
|
||||
bool "env callbacks - print callbacks and their associated variables"
|
||||
help
|
||||
Some environment variable have callbacks defined by
|
||||
U_BOOT_ENV_CALLBACK. These are called when the variable changes.
|
||||
For example changing "baudrate" adjust the serial baud rate. This
|
||||
command lists the currently defined callbacks.
|
||||
|
||||
endmenu
|
||||
|
||||
menu "Memory commands"
|
||||
|
|
|
@ -22,6 +22,7 @@ CONFIG_CMD_BOOTZ=y
|
|||
# CONFIG_CMD_IMLS is not set
|
||||
CONFIG_CMD_ASKENV=y
|
||||
CONFIG_CMD_GREPENV=y
|
||||
CONFIG_CMD_ENV_CALLBACK=y
|
||||
CONFIG_CMD_MD5SUM=y
|
||||
CONFIG_LOOPW=y
|
||||
CONFIG_CMD_MEMTEST=y
|
||||
|
|
|
@ -22,6 +22,7 @@ CONFIG_CMD_BOOTZ=y
|
|||
# CONFIG_CMD_IMLS is not set
|
||||
CONFIG_CMD_ASKENV=y
|
||||
CONFIG_CMD_GREPENV=y
|
||||
CONFIG_CMD_ENV_CALLBACK=y
|
||||
CONFIG_CMD_MD5SUM=y
|
||||
CONFIG_LOOPW=y
|
||||
CONFIG_CMD_MEMTEST=y
|
||||
|
|
|
@ -30,6 +30,7 @@ CONFIG_CMD_BOOTZ=y
|
|||
# CONFIG_CMD_IMLS is not set
|
||||
CONFIG_CMD_ASKENV=y
|
||||
CONFIG_CMD_GREPENV=y
|
||||
CONFIG_CMD_ENV_CALLBACK=y
|
||||
CONFIG_CMD_MD5SUM=y
|
||||
CONFIG_LOOPW=y
|
||||
CONFIG_CMD_MEMTEST=y
|
||||
|
|
|
@ -108,7 +108,6 @@
|
|||
#define CONFIG_CMD_SANDBOX
|
||||
|
||||
#define CONFIG_CMD_ENV_FLAGS
|
||||
#define CONFIG_CMD_ENV_CALLBACK
|
||||
|
||||
#define CONFIG_BOOTARGS ""
|
||||
|
||||
|
|
|
@ -383,7 +383,6 @@ CONFIG_CM922T_XA10
|
|||
CONFIG_CMDLINE_EDITING
|
||||
CONFIG_CMDLINE_PS_SUPPORT
|
||||
CONFIG_CMDLINE_TAG
|
||||
CONFIG_CMD_ENV_CALLBACK
|
||||
CONFIG_CMD_ENV_FLAGS
|
||||
CONFIG_CMD_ERRATA
|
||||
CONFIG_CMD_ESBC_VALIDATE
|
||||
|
|
Loading…
Reference in a new issue