diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 03:25:14 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-22 09:33:54 -0400 |
commit | ffc76589d0e728877992b7247a2ced39025e4493 (patch) | |
tree | 8a52b5f4f34171980e2700526d8f49737348bfff /cmd | |
parent | a55d29d2ac658b33989a7c4c368beff46a98bcde (diff) | |
download | u-boot-ffc76589d0e728877992b7247a2ced39025e4493.tar.gz |
Convert CONFIG_CMD_ENV_FLAGS to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_ENV_FLAGS
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 3ac876403c..ab09a9f528 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -322,6 +322,14 @@ config CMD_ENV_CALLBACK For example changing "baudrate" adjust the serial baud rate. This command lists the currently defined callbacks. +config CMD_ENV_FLAGS + bool "env flags -print variables that have non-default flags" + help + Some environment variables have special flags that control their + behaviour. For example, serial# can only be written once and cannot + be deleted. This command shows the variables that have special + flags. + endmenu menu "Memory commands" |