diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-13 21:07:14 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-13 21:07:14 +0000 |
commit | 696a20fea495b589305abe6cbd4cbfeb498a33a6 (patch) | |
tree | 8da11e3b44d59fd5f4dd2abbe88196fcdd18aeda /src | |
parent | 1edd0e68228fb1476e9972251f89c13e91ee44eb (diff) | |
download | openocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.tar.gz openocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.tar.bz2 openocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.tar.xz openocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.zip |
- remove unused objcopy from configure.in
- make sure bin2char is built before openocd
- add generated startup_tcl.c to clean list
- pass startup_tcl directly to Jim_Eval
git-svn-id: svn://svn.berlios.de/openocd/trunk@805 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 5 | ||||
-rw-r--r-- | src/bin2char.c | 26 | ||||
-rw-r--r-- | src/openocd.c | 17 |
3 files changed, 28 insertions, 20 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0cb13ab6..27309eca 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = openocd bin2char +bin_PROGRAMS = bin2char openocd bin2char_SOURCES = bin2char.c @@ -99,3 +99,6 @@ nobase_dist_pkglib_DATA = \ # Convert .tcl to cfile startup_tcl.c: bin2char startup.tcl ./bin2char startup_tcl < $(srcdir)/startup.tcl > startup_tcl.c + +# add startup_tcl.c to make clean list +CLEANFILES = startup_tcl.c diff --git a/src/bin2char.c b/src/bin2char.c index 436839bb..f1c809c8 100644 --- a/src/bin2char.c +++ b/src/bin2char.c @@ -1,8 +1,27 @@ +/*************************************************************************** + * Copyright (C) 2005 by Dominic Rath * + * Dominic.Rath@gmx.de * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + #include <stdio.h> #include <stdlib.h> -int -main(int argc, char **argv) +int main(int argc, char **argv) { int c; unsigned int n; @@ -24,7 +43,6 @@ main(int argc, char **argv) if ((++n % 16) == 0) fprintf(stdout, "\n"); } - fprintf(stdout, "0 /* terminate with a nil */};\n"); - fprintf(stdout, "unsigned int %s_len = %u;\n", name, n); + fprintf(stdout, "0 /* terminate with a null */};\n"); return 0; } diff --git a/src/openocd.c b/src/openocd.c index 813c021c..2698b724 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -715,13 +715,9 @@ void add_jim(const char *name, int (*cmd)(Jim_Interp *interp, int argc, Jim_Obj } extern unsigned const char startup_tcl[]; -extern unsigned int startup_tcl_len; void initJim(void) -{ - char *script; - int script_len; - +{ Jim_CreateCommand(interp, "openocd", Jim_Command_openocd, NULL, NULL); Jim_CreateCommand(interp, "openocd_throw", Jim_Command_openocd_throw, NULL, NULL); Jim_CreateCommand(interp, "find", Jim_Command_find, NULL, NULL); @@ -741,21 +737,12 @@ void initJim(void) add_default_dirs(); - script_len = startup_tcl_len; - script = malloc(script_len + sizeof(char)); - memcpy(script, startup_tcl, script_len); - - /* null terminate */ - script[script_len] = 0; - - if (Jim_Eval(interp, script)==JIM_ERR) + if (Jim_Eval(interp, startup_tcl)==JIM_ERR) { LOG_ERROR("Failed to run startup.tcl (embedded into OpenOCD compile time)"); Jim_PrintErrorMessage(interp); exit(-1); } - - free(script); } int handle_script_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc) |