diff options
author | Simon Glass <sjg@chromium.org> | 2017-12-04 13:48:26 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-12-07 15:17:00 -0500 |
commit | d5f61f272d5b7b86bf6321512ba6326c7c075e72 (patch) | |
tree | ec1e325d33a56c48feb3990831debf66f5295e6e /cmd/Kconfig | |
parent | c6d47535dfb6636ae5244958a2a9e043bb7646ae (diff) | |
download | u-boot-d5f61f272d5b7b86bf6321512ba6326c7c075e72.tar.gz |
log: Add a 'log level' command
Add a command for adjusting the log level.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 5a6afab99b7..b745a7e977a 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1502,6 +1502,13 @@ config CMD_KGDB single-stepping, inspecting variables, etc. This is supported only on PowerPC at present. +config CMD_LOG + bool "log - Generation, control and access to logging" + help + This provides access to logging features. It allows the output of + log data to be controlled to a limited extent (setting up the default + maximum log level for emitting of records). + config CMD_TRACE bool "trace - Support tracing of function calls and timing" help |