aboutsummaryrefslogtreecommitdiff
path: root/src/target/startup.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/startup.tcl')
-rw-r--r--src/target/startup.tcl10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/target/startup.tcl b/src/target/startup.tcl
index 4d4426f..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
}
}
@@ -221,9 +223,3 @@ proc cortex_a8 args {
echo "DEPRECATED! use 'cortex_a' not 'cortex_a8'"
eval cortex_a $args
}
-
-# deprecated ftdi cmds
-proc ftdi_location args {
- echo "DEPRECATED! use 'adapter usb location' not 'ftdi_location'"
- eval adapter usb location $args
-}