From: Øyvind H. <go...@us...> - 2009-10-20 09:47:13
|
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 6eb09d6e6d65b33c26a4f609e2ba4c20bfd5902b (commit) from 31f73654ae14b9e17f778694ee2a9587d34f5df4 (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 6eb09d6e6d65b33c26a4f609e2ba4c20bfd5902b Author: Ãyvind Harboe <oyv...@zy...> Date: Tue Oct 20 09:46:23 2009 +0200 More svn to git version string fixes. diff --git a/src/jtag/zy1000/zy1000.c b/src/jtag/zy1000/zy1000.c index dc0efb0..e56f6d2 100644 --- a/src/jtag/zy1000/zy1000.c +++ b/src/jtag/zy1000/zy1000.c @@ -32,7 +32,7 @@ #define ZYLIN_DATE __DATE__ #define ZYLIN_TIME __TIME__ #define ZYLIN_OPENOCD GIT_OPENOCD_VERSION -#define ZYLIN_OPENOCD_VERSION "Zylin JTAG ZY1000 " ZYLIN_VERSION " " ZYLIN_DATE " " ZYLIN_TIME +#define ZYLIN_OPENOCD_VERSION "ZY1000 " ZYLIN_VERSION " " ZYLIN_DATE /* low level command set */ @@ -280,6 +280,10 @@ static int jim_zy1000_version(Jim_Interp *interp, int argc, Jim_Obj *const *argv { version_str = ZYLIN_DATE; } + else if (strcmp("time", str) == 0) + { + version_str = ZYLIN_TIME; + } else if (strcmp("pcb", str) == 0) { #ifdef CYGPKG_HAL_NIOS2 ----------------------------------------------------------------------- Summary of changes: src/jtag/zy1000/zy1000.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |