aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@st.com>2020-05-27 09:43:31 +0200
committerSimon Glass <sjg@chromium.org>2020-06-11 20:52:11 -0600
commitb44c751efe09e0069ba4ca6fca246b935bf5efcc (patch)
treeb14a1b5ab3c564ca6cc8c6efcd097f8f39fd8dcd /doc
parentb59889bf344dd261b50d69a5eacfa2874573c7cd (diff)
downloadu-boot-b44c751efe09e0069ba4ca6fca246b935bf5efcc.zip
u-boot-b44c751efe09e0069ba4ca6fca246b935bf5efcc.tar.gz
u-boot-b44c751efe09e0069ba4ca6fca246b935bf5efcc.tar.bz2
doc: log: correct option name CONFIG_LOG_MAX_LEVEL
Replace CONFIG_(SPL_)MAX_LOG_LEVEL by the correct name as defined in common/Kconfig: line 668:config LOG_MAX_LEVEL line 688:config SPL_LOG_MAX_LEVEL line 708:config TPL_LOG_MAX_LEVEL Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/README.log5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/README.log b/doc/README.log
index 1057981..ba83882 100644
--- a/doc/README.log
+++ b/doc/README.log
@@ -60,13 +60,14 @@ Enabling logging
The following options are used to enable logging at compile time:
CONFIG_LOG - Enables the logging system
- CONFIG_MAX_LOG_LEVEL - Max log level to build (anything higher is compiled
+ CONFIG_LOG_MAX_LEVEL - Max log level to build (anything higher is compiled
out)
CONFIG_LOG_CONSOLE - Enable writing log records to the console
If CONFIG_LOG is not set, then no logging will be available.
-The above have SPL versions also, e.g. CONFIG_SPL_MAX_LOG_LEVEL.
+The above have SPL and TPL versions also, e.g. CONFIG_SPL_LOG_MAX_LEVEL and
+CONFIG_TPL_LOG_MAX_LEVEL.
Temporary logging within a single file