diff options
-rw-r--r-- | src/openocd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/openocd.c b/src/openocd.c index 8fa40f06..01c77083 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -253,10 +253,11 @@ int openocd_main(int argc, char *argv[]) } #endif - LOG_OUTPUT("\n\nBUGS? Read http://svn.berlios.de/svnroot/repos/openocd/trunk/BUGS\n\n\n"); - print_version(); + LOG_OUTPUT("For bug reports, read http://svn.berlios.de/svnroot/repos/openocd/trunk/BUGS\n"); + + command_context_mode(cmd_ctx, COMMAND_CONFIG); command_set_output_handler(cmd_ctx, configuration_output_handler, NULL); |