diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-05-11 07:26:11 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-05-11 07:26:11 +0000 |
commit | dda225b7b3a0fb1919abf2d7b8a90f6815706d86 (patch) | |
tree | eeab4ff65700bda281dd74289966709d091a6f49 /src | |
parent | 6cb7d00a03eb18fca1388f38049667ffd531a813 (diff) | |
download | openocd_libswd-dda225b7b3a0fb1919abf2d7b8a90f6815706d86.tar.gz openocd_libswd-dda225b7b3a0fb1919abf2d7b8a90f6815706d86.tar.bz2 openocd_libswd-dda225b7b3a0fb1919abf2d7b8a90f6815706d86.tar.xz openocd_libswd-dda225b7b3a0fb1919abf2d7b8a90f6815706d86.zip |
leave eCos include file issues alone for now.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1723 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r-- | src/ecosboard.c | 58 | ||||
-rw-r--r-- | src/helper/ioutil.c | 2 |
2 files changed, 39 insertions, 21 deletions
diff --git a/src/ecosboard.c b/src/ecosboard.c index 5f6ba8f3..f398ae2a 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -21,53 +21,69 @@ #include "config.h" #endif -#include "configuration.h" -#include "time_support.h" - +#include "log.h" +#include "types.h" #include "jtag.h" +#include "configuration.h" #include "xsvf.h" #include "svf.h" #include "target.h" #include "flash.h" #include "nand.h" #include "pld.h" -#include "rom.h" +#include "command.h" #include "server.h" #include "telnet_server.h" #include "gdb_server.h" +#include <time_support.h> +#include <sys/time.h> +#include <strings.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include <errno.h> + +#include <cyg/io/flash.h> #include <pkgconf/fs_jffs2.h> // Address of JFFS2 #include <network.h> -#include <arpa/inet.h> -#include <dirent.h> -#include <net/if.h> -#include <netdb.h> -#include <netinet/tcp.h> -#include <stdarg.h> -#include <sys/ioctl.h> +#include <fcntl.h> #include <sys/stat.h> - +#include <cyg/fileio/fileio.h> +#include <dirent.h> #include <cyg/athttpd/http.h> #include <cyg/athttpd/socket.h> #include <cyg/athttpd/handler.h> #include <cyg/athttpd/cgi.h> #include <cyg/athttpd/forms.h> #include <cyg/discover/discover.h> -#include <cyg/fileio/fileio.h> #include <cyg/hal/hal_diag.h> -#include <cyg/io/flash.h> +#include <cyg/kernel/kapi.h> #include <cyg/io/serialio.h> #include <cyg/io/io.h> -#include <cyg/kernel/kapi.h> - -#ifdef HAVE_IFADDRS_H +#include <netinet/tcp.h> +#include "rom.h" +#include <sys/ioctl.h> +#include <sys/socket.h> +#include <netinet/in.h> +#include <net/if.h> +#include <arpa/inet.h> +#include <sys/types.h> +#include <sys/socket.h> +#include <netdb.h> +#include <netinet/in.h> +#include <unistd.h> +#include <arpa/inet.h> +#include <stdio.h> #include <ifaddrs.h> -#endif -#ifdef HAVE_STRINGS_H -#include <strings.h> -#endif +#include <string.h> + +#include <unistd.h> +#include <stdio.h> + #define MAX_IFS 64 #if defined(CYGPKG_NET_FREEBSD_STACK) diff --git a/src/helper/ioutil.c b/src/helper/ioutil.c index 390eb042..e595b144 100644 --- a/src/helper/ioutil.c +++ b/src/helper/ioutil.c @@ -51,8 +51,10 @@ #include <ifaddrs.h> #endif #ifdef HAVE_MALLOC_H +#if !BUILD_ECOSBOARD #include <malloc.h> #endif +#endif //#ifdef HAVE_STRINGS_H //#include <strings.h> //#endif |