summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndrew Scull <ascull@google.com>2022-04-03 13:39:08 +0300
committerTom Rini <trini@konsulko.com>2022-04-29 18:11:36 +0300
commit53cb97c093061b81ab3247c432d15be011353470 (patch)
tree7ec35958182aa87d204ac0cab5c00bf90d6045bd /doc
parente95afa56753cebcd20a5114b6d121f281b789006 (diff)
downloadu-boot-53cb97c093061b81ab3247c432d15be011353470.tar.xz
doc: Correct position of gdb '--args' parameter
The '--args' parameter to gdb comes before the binary that the debugger will be attached to rather than after the binary and before the arguments. Fix that in the docs. Signed-off-by: Andrew Scull <ascull@google.com> Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/develop/tests_sandbox.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/develop/tests_sandbox.rst b/doc/develop/tests_sandbox.rst
index 84608dcb84..40cf8ecdd7 100644
--- a/doc/develop/tests_sandbox.rst
+++ b/doc/develop/tests_sandbox.rst
@@ -103,7 +103,7 @@ running with -D will produce different results.
You can easily use gdb on these tests, without needing --gdbserver::
- $ gdb u-boot --args -T -c "ut dm gpio"
+ $ gdb --args u-boot -T -c "ut dm gpio"
...
(gdb) break dm_test_gpio
Breakpoint 1 at 0x1415bd: file test/dm/gpio.c, line 37.