X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fopenocd.c;h=4c075118ddc6eba047a9be586ce67aa1c4bbab75;hb=56adbaffd0a0fab320a64097cd6aa6e74473f840;hp=2a74a46b741b0c2ad762f175d47371f2336a5024;hpb=cfc4d5c6b7b6f8f82dc5bbf3ee661c179814666e;p=openocd.git diff --git a/src/openocd.c b/src/openocd.c index 2a74a46b74..4c075118dd 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -32,8 +32,6 @@ #include "configuration.h" #include "xsvf.h" #include "svf.h" -#include "target.h" -#include "flash.h" #include "nand.h" #include "pld.h" #include "mflash.h" @@ -51,21 +49,6 @@ #define OPENOCD_VERSION \ "Open On-Chip Debugger " VERSION RELSTR " (" PKGBLDDATE ")" -static void print_version(void) -{ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - LOG_OUTPUT("$URL$\n"); - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ -} - /* Give TELNET a way to find out what version this is */ COMMAND_HANDLER(handle_version_command) { @@ -82,7 +65,7 @@ static void exit_handler(void) jtag_interface_quit(); } -static int log_target_callback_event_handler(struct target_s *target, enum target_event event, void *priv) +static int log_target_callback_event_handler(struct target *target, enum target_event event, void *priv) { switch (event) { @@ -106,7 +89,7 @@ static int log_target_callback_event_handler(struct target_s *target, enum targe return ERROR_OK; } -int ioutil_init(struct command_context_s *cmd_ctx); +int ioutil_init(struct command_context *cmd_ctx); /* OpenOCD can't really handle failure of this command. Patches welcome! :-) */ COMMAND_HANDLER(handle_init_command) @@ -175,12 +158,15 @@ COMMAND_HANDLER(handle_init_command) return ERROR_OK; } -command_context_t *global_cmd_ctx; +struct command_context *global_cmd_ctx; + +/// src/hello.c gives a simple example for writing new command modules +int hello_register_commands(struct command_context *cmd_ctx); /* NB! this fn can be invoked outside this file for non PC hosted builds */ -command_context_t *setup_command_handler(void) +struct command_context *setup_command_handler(void) { - command_context_t *cmd_ctx; + struct command_context *cmd_ctx; global_cmd_ctx = cmd_ctx = command_init(); @@ -188,6 +174,7 @@ command_context_t *setup_command_handler(void) COMMAND_EXEC, "show OpenOCD version"); /* register subsystem commands */ + hello_register_commands(cmd_ctx); server_register_commands(cmd_ctx); telnet_register_commands(cmd_ctx); gdb_register_commands(cmd_ctx); @@ -242,7 +229,7 @@ int openocd_main(int argc, char *argv[]) int ret; /* initialize commandline interface */ - command_context_t *cmd_ctx; + struct command_context *cmd_ctx; cmd_ctx = setup_command_handler(); @@ -253,8 +240,6 @@ int openocd_main(int argc, char *argv[]) } #endif - print_version(); - LOG_OUTPUT("For bug reports, read\n\t" "http://openocd.berlios.de/doc/doxygen/bugs.html" "\n");