X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fhelper%2Fstartup.tcl;h=d3ddb30c06179fa137370668bf882e5661c66542;hp=4e12e30baae091824d06ce374c6a3ab84b06d725;hb=dfbb9f3e89ae;hpb=6c0553c8c504d4c6da20857abeec80648d841b72 diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index 4e12e30baa..d3ddb30c06 100644 --- a/src/helper/startup.tcl +++ b/src/helper/startup.tcl @@ -93,20 +93,6 @@ proc help {args} { add_help_text help "Tcl implementation of help command" -#a bit of backwards compatibility -proc ocd_throw {cmd} { - set ocd_output "" - eval $cmd - return $ocd_output -} - -#a bit of backwards compatibility -proc openocd {cmd} { - set ocd_output "" - eval $cmd - return $ocd_output -} - # If a fn is unknown to Tcl, we try to execute it as an OpenOCD command # # We also support two level commands. "flash banks" is translated to @@ -130,10 +116,13 @@ proc target_script {target_num eventname scriptname} { } # This is the script we invoke - proc "target_[set eventname]_[set target_num]" {} "script $scriptname" + proc "target_[set target_num]_[set eventname]" {} "script $scriptname" } +add_help_text target_script " " + + # Try flipping / and \ to find file if the filename does not # match the precise spelling proc find {filename} { @@ -162,5 +151,4 @@ proc script {filename} { add_help_text script " - filename of OpenOCD script (tcl) to run" -add_help_text target_script " "