Skip to content
Snippets Groups Projects
Commit d0f32d0e authored by oharboe's avatar oharboe
Browse files

restart is a per-target action

git-svn-id: svn://svn.berlios.de/openocd/trunk@853 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent fa33b329
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,11 @@ 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 {} {
# Handle GDB 'R' packet. Can be overriden by configuration script,
# but it's not something one would expect target scripts to do
# normally
proc ocd_gdb_restart {target_num} {
# Fix!!! we're resetting all targets here! Really we should reset only
# one target
reset halt
}
\ No newline at end of file
......@@ -1950,7 +1950,7 @@ int gdb_input_inner(connection_t *connection)
break;
case 'R':
/* handle extended restart packet */
command_run_linef(connection->cmd_ctx, "gdb_restart");
command_run_linef(connection->cmd_ctx, "ocd_gdb_restart %d", get_num_by_target(target));
break;
default:
/* ignore unkown packets */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment