Browse Source

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
tags/v0.1.0
oharboe 15 years ago
parent
commit
150651559e
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      src/helper/startup.tcl

+ 9
- 0
src/helper/startup.tcl 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"

Loading…
Cancel
Save