diff options
author | Sean Anderson <sean.anderson@seco.com> | 2021-03-04 11:34:23 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-12 17:17:11 -0400 |
commit | b935d190662306b4174a8f7e3dbd6194c5f55ecb (patch) | |
tree | f2676e3868c6efe87841957bddb84538b95dbe29 /cmd | |
parent | a62de442e41d85b0ab682c2d51ce9d24971dd9dd (diff) | |
download | u-boot-b935d190662306b4174a8f7e3dbd6194c5f55ecb.tar.gz |
cmd: xtrace: Convert to bool
This variable is a boolean, not a string.
Signed-off-by: Sean Anderson <sean.anderson@seco.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index c735e81b37..f4cff0c125 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -65,7 +65,7 @@ config SYS_PROMPT_HUSH_PS2 to complete a command. Usually "> ". config SYS_XTRACE - string "Command execution tracer" + bool "Command execution tracer" depends on CMDLINE default y if CMDLINE help |