aboutsummaryrefslogtreecommitdiff
path: root/src/target/startup.tcl
diff options
context:
space:
mode:
authorTomas Vanek <vanekt@fbl.cz>2017-11-04 09:47:02 +0100
committerAntonio Borneo <borneo.antonio@gmail.com>2020-03-12 09:43:55 +0000
commit9f4659ae6b246bcab77d915cee288b2307a926b3 (patch)
tree90fe7ca0767abdb1998586bbeb575d944641bbc8 /src/target/startup.tcl
parent69f0105324f2fdcd0499ae07ada15d340762d061 (diff)
downloadriscv-openocd-9f4659ae6b246bcab77d915cee288b2307a926b3.zip
riscv-openocd-9f4659ae6b246bcab77d915cee288b2307a926b3.tar.gz
riscv-openocd-9f4659ae6b246bcab77d915cee288b2307a926b3.tar.bz2
target: add examine-fail event
A configuration script may want to check the reason why examine fails e.g. device has security lock engaged. tcl/target/kx.cfg and klx.cfg is modified to use the new event for testing of the security lock of Kinetis MCU Change-Id: Id1d3a79d24e84b513f4ea35586cd2ab0437ff9b3 Signed-off-by: Tomas Vanek <vanekt@fbl.cz> Reviewed-on: http://openocd.zylin.com/4289 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'src/target/startup.tcl')
-rw-r--r--src/target/startup.tcl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/target/startup.tcl b/src/target/startup.tcl
index cf844e1..976cd2a 100644
--- a/src/target/startup.tcl
+++ b/src/target/startup.tcl
@@ -66,7 +66,9 @@ proc ocd_process_reset_inner { MODE } {
if {![using_jtag] || [jtag tapisenabled [$t cget -chain-position]]} {
$t invoke-event examine-start
set err [catch "$t arp_examine allow-defer"]
- if { $err == 0 } {
+ if { $err } {
+ $t invoke-event examine-fail
+ } else {
$t invoke-event examine-end
}
}