summaryrefslogtreecommitdiff
path: root/src/ecosboard.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-11 07:26:11 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-11 07:26:11 +0000
commitdda225b7b3a0fb1919abf2d7b8a90f6815706d86 (patch)
treeeeab4ff65700bda281dd74289966709d091a6f49 /src/ecosboard.c
parent6cb7d00a03eb18fca1388f38049667ffd531a813 (diff)
downloadopenocd+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/ecosboard.c')
-rw-r--r--src/ecosboard.c58
1 files changed, 37 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)