summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-30 17:20:18 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-02 13:26:22 -0800
commit682910fdc24c8ae970b3cd1e5b4ff7042e0522be (patch)
treee09765b30d7471ba1c8baf950f0700aba2bdfdb0 /src/openocd.c
parent55eeea7fceb67f29c9a43eeb7993c70214157343 (diff)
downloadopenocd+libswd-682910fdc24c8ae970b3cd1e5b4ff7042e0522be.tar.gz
openocd+libswd-682910fdc24c8ae970b3cd1e5b4ff7042e0522be.tar.bz2
openocd+libswd-682910fdc24c8ae970b3cd1e5b4ff7042e0522be.tar.xz
openocd+libswd-682910fdc24c8ae970b3cd1e5b4ff7042e0522be.zip
pld: factor init to 'pld init'
Split PLD initialization into 'pld init', which gets called from 'init'.
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 44e02925..777e6306 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -147,9 +147,10 @@ COMMAND_HANDLER(handle_init_command)
return ERROR_FAIL;
LOG_DEBUG("NAND init complete");
- if (pld_init(CMD_CTX) != ERROR_OK)
+ command_context_mode(CMD_CTX, COMMAND_CONFIG);
+ if (command_run_line(CMD_CTX, "pld init") != ERROR_OK)
return ERROR_FAIL;
- LOG_DEBUG("pld init complete");
+ command_context_mode(CMD_CTX, COMMAND_EXEC);
/* initialize telnet subsystem */
gdb_target_add_all(all_targets);