diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-10-22 18:20:42 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-10-22 18:20:42 +0000 |
commit | 150651559e4349e154c00be323eeb8e78300b382 (patch) | |
tree | 9526455b88ea01fe83de8075d8ffe040b3ea13ff /src/helper | |
parent | bfd7a227b0d7d753e01abc244974c2a51d71bd50 (diff) | |
download | riscv-openocd-150651559e4349e154c00be323eeb8e78300b382.zip riscv-openocd-150651559e4349e154c00be323eeb8e78300b382.tar.gz riscv-openocd-150651559e4349e154c00be323eeb8e78300b382.tar.bz2 |
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')
-rw-r--r-- | src/helper/startup.tcl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index fc70298..fad7412 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" |