summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-17 21:18:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-17 21:18:34 +0000
commit118472cf87f0163925104d25d85108ba48a82406 (patch)
treed06714b4cb18f10bd356dcb1ab2842c6e28ace92 /cpukit
parentRevert configure.ac change. (diff)
downloadrtems-118472cf87f0163925104d25d85108ba48a82406.tar.bz2
2009-08-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* aclocal/check-networking.m4: Disable BSD TCP/IP for small memory targets.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/aclocal/check-networking.m43
2 files changed, 8 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index a249f925c0..80842bee06 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-17 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * aclocal/check-networking.m4: Disable BSD TCP/IP for small memory
+ targets.
+
2009-08-17 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/src/clockget.c: Restructure to ease coverage analysis of
diff --git a/cpukit/aclocal/check-networking.m4 b/cpukit/aclocal/check-networking.m4
index d46bc91fe6..1b80e75303 100644
--- a/cpukit/aclocal/check-networking.m4
+++ b/cpukit/aclocal/check-networking.m4
@@ -9,6 +9,9 @@ AC_CACHE_CHECK([whether CPU supports networking],
rtems_cv_HAS_NETWORKING,
[dnl
case "$RTEMS_CPU" in
+ avr*|m32c*) # do not have address space to hold BSD TCP/IP stack
+ rtems_cv_HAS_NETWORKING="no"
+ ;;
unix*)
rtems_cv_HAS_NETWORKING="no"
;;