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 f129ef67dcd96bdd98bf27c13ffbf23b7ca5ee66 (commit)
via e521f6415b3ca293ab496d303e092d5312f6e83d (commit)
via dc4df8bb974580946c46c0aac82a54dfb2256cc9 (commit)
from 1c794320615d917d0e8fb4c40d096fd22f9a824f (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 f129ef67dcd96bdd98bf27c13ffbf23b7ca5ee66
Author: Spencer Oliver <nt...@us...>
Date: Mon Jul 12 20:04:57 2010 +0100
jtag: fix shadow issues in adapter_init
Use global jtag_only rather than local static.
Signed-off-by: Spencer Oliver <nt...@us...>
diff --git a/src/jtag/core.c b/src/jtag/core.c
index f7bbe8d..352985f 100644
--- a/src/jtag/core.c
+++ b/src/jtag/core.c
@@ -1357,7 +1357,6 @@ int adapter_init(struct command_context *cmd_ctx)
* the legacy drivers are JTAG-only
*/
if (!transports_are_declared()) {
- static const char *jtag_only[] = { "jtag", NULL, };
LOG_ERROR("Adapter driver '%s' did not declare "
"which transports it allows; assuming "
"JTAG-only", jtag->name);
commit e521f6415b3ca293ab496d303e092d5312f6e83d
Author: Spencer Oliver <nt...@us...>
Date: Mon Jul 12 19:48:45 2010 +0100
arm9: revert change arm9tdmi cmd group name to arm9
This reverts the incorrect change made to the arm9 cmd group in commit
d1eca9a74c7c57ba6a3210c51b2a10cc5adb22e1.
The code now matches the docs and the release notes.
Signed-off-by: Spencer Oliver <nt...@us...>
diff --git a/src/target/arm9tdmi.c b/src/target/arm9tdmi.c
index 744ee76..0749a56 100644
--- a/src/target/arm9tdmi.c
+++ b/src/target/arm9tdmi.c
@@ -912,9 +912,9 @@ const struct command_registration arm9tdmi_command_handlers[] = {
.chain = arm7_9_command_handlers,
},
{
- .name = "arm9tdmi",
+ .name = "arm9",
.mode = COMMAND_ANY,
- .help = "arm9tdmi command group",
+ .help = "arm9 command group",
.chain = arm9tdmi_exec_command_handlers,
},
COMMAND_REGISTRATION_DONE
commit dc4df8bb974580946c46c0aac82a54dfb2256cc9
Author: Spencer Oliver <nt...@us...>
Date: Mon Jul 12 19:36:19 2010 +0100
docs: fix transport typo
Signed-off-by: Spencer Oliver <nt...@us...>
diff --git a/doc/openocd.texi b/doc/openocd.texi
index 9feee03..8f47cd1 100644
--- a/doc/openocd.texi
+++ b/doc/openocd.texi
@@ -2461,14 +2461,14 @@ JTAG transports expose a chain of one or more Test Access Points (TAPs),
each of which must be explicitly declared.
JTAG supports both debugging and boundary scan testing.
Flash programming support is built on top of debug support.
-@subsection SWD ransport
+@subsection SWD Transport
SWD (Serial Wire Debug) is an ARM-specific transport which exposes one
Debug Access Point (DAP, which must be explicitly declared.
(SWD uses fewer signal wires than JTAG.)
SWD is debug-oriented, and does not support boundary scan testing.
Flash programming support is built on top of debug support.
(Some processors support both JTAG and SWD.)
-@subsection SPI ransport
+@subsection SPI Transport
The Serial Peripheral Interface (SPI) is a general purpose transport
which uses four wire signaling. Some processors use it as part of a
solution for flash programming.
-----------------------------------------------------------------------
Summary of changes:
doc/openocd.texi | 4 ++--
src/jtag/core.c | 1 -
src/target/arm9tdmi.c | 4 ++--
3 files changed, 4 insertions(+), 5 deletions(-)
hooks/post-receive
--
Main OpenOCD repository
|