From: oharboe Date: Wed, 22 Oct 2008 18:20:42 +0000 (+0000) Subject: load and verify are now synonymous to load/verify_image X-Git-Tag: v0.1.0~221 X-Git-Url: https://review.openocd.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=150651559e4349e154c00be323eeb8e78300b382;hp=bfd7a227b0d7d753e01abc244974c2a51d71bd50;p=openocd.git 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 --- diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index fc70298da1..fad7412ca2 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"