summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-12-19 11:24:51 +0100
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-12-22 17:44:22 +0100
commite03f45f6996ca9b646c228cad8431dea73054818 (patch)
tree19eab3d6686b89b168915c8412ae3835b67d3612 /src/openocd.c
parent37f4978f95a989d6bfcaf9aff354ee23a0855b92 (diff)
downloadopenocd+libswd-e03f45f6996ca9b646c228cad8431dea73054818.tar.gz
openocd+libswd-e03f45f6996ca9b646c228cad8431dea73054818.tar.bz2
openocd+libswd-e03f45f6996ca9b646c228cad8431dea73054818.tar.xz
openocd+libswd-e03f45f6996ca9b646c228cad8431dea73054818.zip
config: add init_targets proc that is executed just before init
this allows configuration scripts to export a init_targets proc rather than setting up the target directly. This allows for new conventions in how to set up target vs. board script and how to transfer default settings between board and target scripts. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 5ce01e82..109f0e19 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -340,6 +340,10 @@ int openocd_main(int argc, char *argv[])
if (ERROR_OK != ret)
return EXIT_FAILURE;
+ ret = command_run_line(cmd_ctx, "init_targets");
+ if (ERROR_OK != ret)
+ ret = EXIT_FAILURE;
+
if (init_at_startup)
{
ret = command_run_line(cmd_ctx, "init");