diff options
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/command.c | 1 | ||||
-rw-r--r-- | src/helper/startup.tcl | 20 |
2 files changed, 5 insertions, 16 deletions
diff --git a/src/helper/command.c b/src/helper/command.c index 12827ecd..0876d877 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -346,6 +346,7 @@ int run_command(command_context_t *context, command_t *c, char *words[], int num if (!((context->mode == COMMAND_CONFIG) || (c->mode == COMMAND_ANY) || (c->mode == context->mode) )) { /* Config commands can not run after the config stage */ + LOG_ERROR("Illegal mode for command"); return ERROR_FAIL; } diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index 4e12e30b..d3ddb30c 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 "<target#> <event=reset/pre_reset/post_halt/pre_resume/gdb_program_config> <script_file>" + + # 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> - filename of OpenOCD script (tcl) to run" -add_help_text target_script "<target#> <event=reset/pre_reset/post_halt/pre_resume/gdb_program_config> <script_file>" |