]> git.gag.com Git - fw/openocd/commitdiff
jtag: Fix jtag_reset fallback
authorLeonard Crestez <leonard.crestez@nxp.com>
Mon, 27 Jan 2020 18:10:30 +0000 (20:10 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Wed, 29 Jan 2020 10:06:58 +0000 (10:06 +0000)
The fallback provided for the jtag_reset command always fails with a
strange message: 'Error: invalid command name "de"'

This is caused by incorrect quoting inside the warning message.

Fixes: c07b774e8f49 ("jtag: replace command "jtag_reset" with "adapter [de]assert"")
Change-Id: Icd47fca2b5a7b33474bfb0040e88193a0968f301
Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
Reviewed-on: http://openocd.zylin.com/5416
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
src/jtag/startup.tcl

index 2ac85715826e3054f6f649cc0539f9de3fe4e653..e522e74d69809fa781ce4ec968f6c3bb37ba3ffe 100644 (file)
@@ -135,7 +135,7 @@ proc jtag_nsrst_assert_width args {
 }
 
 proc jtag_reset args {
-       echo "DEPRECATED! use 'adapter [de]assert' not 'jtag_reset'"
+       echo "DEPRECATED! use 'adapter \[de\]assert' not 'jtag_reset'"
        switch $args {
                "0 0"
                        {eval adapter deassert trst deassert srst}