summaryrefslogtreecommitdiff
path: root/src/ecosboard.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-01-09 11:44:01 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-01-09 11:44:01 +0000
commit59ff8d24d84ad734ca470aa37e9516be806499c9 (patch)
treeeb849b9e30295482f04be9121245c04599bdfc55 /src/ecosboard.c
parent5bbf2ae519c31b45e7609918a1bc36b849ba53f5 (diff)
downloadopenocd+libswd-59ff8d24d84ad734ca470aa37e9516be806499c9.tar.gz
openocd+libswd-59ff8d24d84ad734ca470aa37e9516be806499c9.tar.bz2
openocd+libswd-59ff8d24d84ad734ca470aa37e9516be806499c9.tar.xz
openocd+libswd-59ff8d24d84ad734ca470aa37e9516be806499c9.zip
moved ioutil init to the right spot: before config scripts
git-svn-id: svn://svn.berlios.de/openocd/trunk@1311 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/ecosboard.c')
-rw-r--r--src/ecosboard.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ecosboard.c b/src/ecosboard.c
index 11b786cb..725a3f36 100644
--- a/src/ecosboard.c
+++ b/src/ecosboard.c
@@ -869,6 +869,8 @@ int add_default_dirs(void)
return ERROR_OK;
}
+int ioutil_init(struct command_context_s *cmd_ctx);
+
int main(int argc, char *argv[])
{
/* ramblockdevice will be the same address every time. The deflate app uses a buffer 16mBytes out, so we
@@ -1001,6 +1003,14 @@ int main(int argc, char *argv[])
command_set_output_handler(cmd_ctx, configuration_output_handler, NULL);
command_context_mode(cmd_ctx, COMMAND_CONFIG);
+#if BUILD_IOUTIL
+ if (ioutil_init(cmd_ctx) != ERROR_OK)
+ {
+ return EXIT_FAILURE;
+ }
+#endif
+
+
#ifdef CYGPKG_PROFILE_GPROF
register_command(cmd_ctx, NULL, "ecosboard_profile", eCosBoard_handle_eCosBoard_profile_command,
COMMAND_ANY, NULL);