From 3ad171cd537f8fc1bac649f24513ebfafd95baf2 Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Wed, 17 Mar 2010 09:57:44 +0000 Subject: SCRIPT: add add_script_search_dir cmd Add a add_script_search_dir cmd so that adding search dir's can be added to cfg scripts. Signed-off-by: Spencer Oliver --- src/openocd.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/openocd.c') diff --git a/src/openocd.c b/src/openocd.c index d376f5f8..54c454d7 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -159,6 +159,16 @@ COMMAND_HANDLER(handle_init_command) return ERROR_OK; } +COMMAND_HANDLER(handle_add_script_search_dir_command) +{ + if (CMD_ARGC != 1) + return ERROR_COMMAND_SYNTAX_ERROR; + + add_script_search_dir(CMD_ARGV[0]); + + return ERROR_OK; +} + static const struct command_registration openocd_command_handlers[] = { { .name = "version", @@ -181,6 +191,13 @@ static const struct command_registration openocd_command_handlers[] = { "Unless 'noinit' is called, this command is " "called automatically at the end of startup.", + }, + { + .name = "add_script_search_dir", + .handler = &handle_add_script_search_dir_command, + .mode = COMMAND_ANY, + .help = "dir to search for config files and scripts", + }, COMMAND_REGISTRATION_DONE }; -- cgit v1.2.3