From: David B. <dbr...@us...> - 2009-10-22 21:05:20
|
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 f593ff0a3dd08052648da61a75f5ad5a35945194 (commit) from 344bed2f7eab5f4ff05fd944b1c476fc8a2103ba (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 f593ff0a3dd08052648da61a75f5ad5a35945194 Author: David Brownell <dbr...@us...> Date: Thu Oct 22 12:05:04 2009 -0700 have "reg" command print cache names too When dumping over 100 registers (as on most ARM9 + ETM cores), aid readability by splitting them into logical groups. Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/target/target.c b/src/target/target.c index 4516207..eb93fb7 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -1823,6 +1823,8 @@ static int handle_reg_command(struct command_context_s *cmd_ctx, char *cmd, char { int i; + command_print(cmd_ctx, "===== %s", cache->name); + for (i = 0, reg = cache->reg_list; i < cache->num_regs; i++, reg++, count++) ----------------------------------------------------------------------- Summary of changes: src/target/target.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) hooks/post-receive -- Main OpenOCD repository |