summaryrefslogtreecommitdiff
path: root/src/helper/startup.tcl
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-10-22 18:20:42 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-10-22 18:20:42 +0000
commit150651559e4349e154c00be323eeb8e78300b382 (patch)
tree9526455b88ea01fe83de8075d8ffe040b3ea13ff /src/helper/startup.tcl
parentbfd7a227b0d7d753e01abc244974c2a51d71bd50 (diff)
downloadopenocd+libswd-150651559e4349e154c00be323eeb8e78300b382.tar.gz
openocd+libswd-150651559e4349e154c00be323eeb8e78300b382.tar.bz2
openocd+libswd-150651559e4349e154c00be323eeb8e78300b382.tar.xz
openocd+libswd-150651559e4349e154c00be323eeb8e78300b382.zip
load and verify are now synonymous to load/verify_image
git-svn-id: svn://svn.berlios.de/openocd/trunk@1092 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/startup.tcl')
-rw-r--r--src/helper/startup.tcl9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl
index fc70298d..fad7412c 100644
--- a/src/helper/startup.tcl
+++ b/src/helper/startup.tcl
@@ -296,4 +296,13 @@ proc production_test {} {
}
add_help_text production "Runs test procedure. Throws exception if procedure failed. Prints progress messages."
+proc load {args} {
+ return [eval "load_image $args"]
+}
+add_help_text load "synonym to load_image"
+
+proc verify {args} {
+ return [eval "verify_image $args"]
+}
+add_help_text verify "synonym to verify_image"