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:
parent
bfd7a227b0
commit
150651559e
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue