From 150651559e4349e154c00be323eeb8e78300b382 Mon Sep 17 00:00:00 2001 From: oharboe Date: Wed, 22 Oct 2008 18:20:42 +0000 Subject: [PATCH 1/1] 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 --- src/helper/startup.tcl | 9 +++++++++ 1 file changed, 9 insertions(+) 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" -- 2.30.2