From: Øyvind H. <go...@us...> - 2010-01-05 20:25:22
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 95f86e8e0525fc93093cc2bc060df5017d2f504e (commit) from 6d4abe906fe4b3f3a70f8ccfa356f8c0ebbfabad (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 95f86e8e0525fc93093cc2bc060df5017d2f504e Author: Ãyvind Harboe <oyv...@zy...> Date: Tue Jan 5 14:57:45 2010 +0100 gdb: fix regression in gdb_port command The gdb_port command can be invoked during normal execution to report the port used for gdb, whereas it was listed as CONFIG stage only, which caused an error when excuting it to return the reported error. Also in line with the grander goal of making more commands available during all "modes" (perhaps retiring config mode), there is no particular reason to limit gdb_port to the config stage. Regression was introduced in: b3bf1d12b2fdfba1c1cbee3e1afbfbb27cbd1a26 aka v0.4.0-rc1-32-gb3bf1d1 Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c index d5d7042..96b9dbf 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -2421,8 +2421,9 @@ static const struct command_registration gdb_command_handlers[] = { { .name = "gdb_port", .handler = &handle_gdb_port_command, - .mode = COMMAND_CONFIG, - .help = "daemon configuration command gdb_port", + .mode = COMMAND_ANY, + .help = "daemon configuration command gdb_port. No arguments reports " + "GDB port.", .usage = "<port>", }, { ----------------------------------------------------------------------- Summary of changes: src/server/gdb_server.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |