From: Andrew Scull Date: Sun, 3 Apr 2022 10:39:08 +0000 (+0000) Subject: doc: Correct position of gdb '--args' parameter X-Git-Tag: v2022.07~73^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53cb97c093061b81ab3247c432d15be011353470;p=platform%2Fkernel%2Fu-boot.git 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 Cc: Simon Glass Reviewed-by: Simon Glass --- diff --git a/doc/develop/tests_sandbox.rst b/doc/develop/tests_sandbox.rst index 84608dc..40cf8ec 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.