Skip to content
Snippets Groups Projects
Commit 15065155 authored by oharboe's avatar oharboe
Browse files

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
parent bfd7a227
No related branches found
No related tags found
No related merge requests found
...@@ -296,4 +296,13 @@ proc production_test {} { ...@@ -296,4 +296,13 @@ proc production_test {} {
} }
add_help_text production "Runs test procedure. Throws exception if procedure failed. Prints progress messages." 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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment