summaryrefslogtreecommitdiff
path: root/src/helper/startup.tcl
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-10-01 09:53:32 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-10-01 09:53:32 +0000
commitaef29d913f57e643b26f708ddf4dc509b70efeb3 (patch)
tree53193ff387f79a4372c088828c6acaf1eca98447 /src/helper/startup.tcl
parentebbd959aeef957f39371a7470d99d90d2035c9fe (diff)
downloadopenocd+libswd-aef29d913f57e643b26f708ddf4dc509b70efeb3.tar.gz
openocd+libswd-aef29d913f57e643b26f708ddf4dc509b70efeb3.tar.bz2
openocd+libswd-aef29d913f57e643b26f708ddf4dc509b70efeb3.tar.xz
openocd+libswd-aef29d913f57e643b26f708ddf4dc509b70efeb3.zip
Duane Ellis: added missing invocation of reset-init
git-svn-id: svn://svn.berlios.de/openocd/trunk@1013 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/startup.tcl')
-rw-r--r--src/helper/startup.tcl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl
index ff30d57d..e3d750e0 100644
--- a/src/helper/startup.tcl
+++ b/src/helper/startup.tcl
@@ -271,7 +271,8 @@ proc ocd_process_reset { MODE } {
set err [catch "$t arp_waitstate halted 5000"]
# Did it halt?
if { $err == 0 } {
- $t invoke-event old-post_reset
+ $t invoke-event old-post_reset
+ $t invoke-event reset-init
}
}
}