summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-06-25 11:14:44 +0000
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-06-25 11:14:44 +0000
commitdb0264db2af7c86959aeb821504c9dcd72134425 (patch)
tree044b12dab42fddf21229d26e408b0273ac27b9e2 /src/openocd.c
parentef139a3a5e41fbcbabdf4be0ecbbb5591448ad2e (diff)
downloadopenocd+libswd-db0264db2af7c86959aeb821504c9dcd72134425.tar.gz
openocd+libswd-db0264db2af7c86959aeb821504c9dcd72134425.tar.bz2
openocd+libswd-db0264db2af7c86959aeb821504c9dcd72134425.tar.xz
openocd+libswd-db0264db2af7c86959aeb821504c9dcd72134425.zip
- added "version" command (patch from John Hartman, thanks)
- fixed bug in telnet history handling (patch from John Hartman, thanks) - OpenOCD version has been changed from SVN revision number to date/time git-svn-id: svn://svn.berlios.de/openocd/trunk@74 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c
index b0d0a844..229fd916 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -18,6 +18,8 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
+#define OPENOCD_VERSION "Open On-Chip Debugger (2006-06-25 13:15 CEST)"
+
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
@@ -49,11 +51,22 @@
#include <unistd.h>
#include <errno.h>
+/* Give TELNET a way to find out what version this is */
+int handle_version_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
+{
+ command_print(cmd_ctx, OPENOCD_VERSION);
+
+ return ERROR_OK;
+}
+
int main(int argc, char *argv[])
{
/* initialize commandline interface */
command_context_t *cmd_ctx, *cfg_cmd_ctx;
cmd_ctx = command_init();
+
+ register_command(cmd_ctx, NULL, "version", handle_version_command,
+ COMMAND_EXEC, "show OpenOCD version");
/* register subsystem commands */
server_register_commands(cmd_ctx);
@@ -70,7 +83,7 @@ int main(int argc, char *argv[])
return EXIT_FAILURE;
DEBUG("log init complete");
- INFO("Open On-Chip Debugger (Revision 65)");
+ INFO( OPENOCD_VERSION );
cfg_cmd_ctx = copy_command_context(cmd_ctx);
cfg_cmd_ctx->mode = COMMAND_CONFIG;