From: oharboe Date: Mon, 21 Jul 2008 18:06:36 +0000 (+0000) Subject: Allows config scripts to override handling of 'R'(restart) GDB packet. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=fa33b3290307be8b46dd0ff817ff06f4b7492d86;p=fw%2Fopenocd 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 --- diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index d3ddb30c0..acc4d318a 100644 --- a/src/helper/startup.tcl +++ b/src/helper/startup.tcl @@ -152,3 +152,8 @@ proc script {filename} { add_help_text script " - filename of OpenOCD script (tcl) to run" + +# Handle GDB 'R' packet. Can be overriden by configuration script +proc gdb_restart {} { + reset halt +} \ No newline at end of file diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c index 665e3507a..e964a1d51 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -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 */