Allows config scripts to override handling of 'R'(restart) GDB packet.

git-svn-id: svn://svn.berlios.de/openocd/trunk@852 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2008-07-21 18:06:36 +00:00
parent 25b0e4e0d5
commit fa33b32903
2 changed files with 6 additions and 2 deletions

View File

@ -152,3 +152,8 @@ proc script {filename} {
add_help_text script "<filename> - filename of OpenOCD script (tcl) to run"
# Handle GDB 'R' packet. Can be overriden by configuration script
proc gdb_restart {} {
reset halt
}

View File

@ -1950,8 +1950,7 @@ int gdb_input_inner(connection_t *connection)
break;
case 'R':
/* handle extended restart packet */
/* fix?? make this configurable? */
target_process_reset(connection->cmd_ctx, RESET_HALT);
command_run_linef(connection->cmd_ctx, "gdb_restart");
break;
default:
/* ignore unkown packets */