This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Main OpenOCD repository".
The branch, master has been updated
via 5f3bc3b279c648f5c751fcd4724206c6ce3e38c6 (commit)
from 23d8831391bbd167e0061388c87e7ecf7b9891a7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5f3bc3b279c648f5c751fcd4724206c6ce3e38c6
Author: Antonio Borneo <bor...@gm...>
Date: Wed Mar 3 21:57:33 2021 +0100
tcl/target/eos_s3: fix variable's expansion typo
TCL expands the variables only if preceded by a dollar sign.
Add the missing dollar before the variable's name '_CPUTAPID'.
Change-Id: Icc5d0dddf24f75d12ee63fee69e1b265e842ca43
Signed-off-by: Antonio Borneo <bor...@gm...>
Reported-by: Wes Cilldhaire <we...@so...>
Fixes: c3166b43e415 ("tcl/target: Add QuickLogic EOS S3 MCU configuration")
Reviewed-on: http://openocd.zylin.com/6079
Tested-by: jenkins
Reviewed-by: TM <tom...@ho...>
diff --git a/tcl/target/eos_s3.cfg b/tcl/target/eos_s3.cfg
index f6016fb30..150ef4e31 100644
--- a/tcl/target/eos_s3.cfg
+++ b/tcl/target/eos_s3.cfg
@@ -26,7 +26,7 @@ if { [info exists CPUTAPID] } {
}
}
-swj_newdap $_CHIPNAME cpu -irlen 4 -irmask 0xf -expected-id _CPUTAPID
+swj_newdap $_CHIPNAME cpu -irlen 4 -irmask 0xf -expected-id $_CPUTAPID
dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
set _TARGETNAME $_CHIPNAME.cpu
-----------------------------------------------------------------------
Summary of changes:
tcl/target/eos_s3.cfg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Main OpenOCD repository
|