summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-11-24 19:26:39 +0300
committerSimon Glass <sjg@chromium.org>2021-12-05 19:23:15 +0300
commit89050244c40e79fc24b24ee84e4e668a6dfc336d (patch)
tree5e8d2b8951168676c3f8c27bf36f47b9dbbc399e /doc
parent5bf81216463dbeb5b5dcdbc22e2f5c8589c333fb (diff)
downloadu-boot-89050244c40e79fc24b24ee84e4e668a6dfc336d.tar.xz
trace: sandbox: Use only the Kconfig options
At present there are Kconfig options for tracing, but sandbox uses plain #defines to set them. Correct this and make the tracing command default to enabled so that this is not needed. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/develop/trace.rst9
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/develop/trace.rst b/doc/develop/trace.rst
index 09f5745a90..b22e068ef9 100644
--- a/doc/develop/trace.rst
+++ b/doc/develop/trace.rst
@@ -30,16 +30,11 @@ Sandbox is a build of U-Boot that can run under Linux so it is a convenient
way of trying out tracing before you use it on your actual board. To do
this, follow these steps:
-Add the following to include/configs/sandbox.h (if not already there)
+Add the following to config/sandbox_defconfig
.. code-block:: c
- #define CONFIG_TRACE
- #define CONFIG_CMD_TRACE
- #define CONFIG_TRACE_BUFFER_SIZE (16 << 20)
- #define CONFIG_TRACE_EARLY_SIZE (8 << 20)
- #define CONFIG_TRACE_EARLY
- #define CONFIG_TRACE_EARLY_ADDR 0x00100000
+ CONFIG_TRACE=y
Build sandbox U-Boot with tracing enabled: