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
This commit is contained in:
oharboe 2008-10-22 18:20:42 +00:00
parent bfd7a227b0
commit 150651559e
1 changed files with 9 additions and 0 deletions

View File

@ -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"