Always disable networking for h8300

This commit is contained in:
Joel Sherrill
2015-03-05 09:51:40 -06:00
parent e516d4546d
commit 7af34c13d7
10 changed files with 14 additions and 1 deletions

View File

@@ -7,7 +7,8 @@ AC_CACHE_CHECK([whether BSP supports networking],
rtems_cv_HAS_NETWORKING,
[dnl
case "$RTEMS_CPU" in
avr*|m32c*) # do not have address space to hold BSD TCP/IP stack
# do not have address space to hold BSD TCP/IP stack
avr*|h8300*|m32c*)
rtems_cv_HAS_NETWORKING="no"
;;
*)

View File

@@ -4,6 +4,7 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
fsdosfsname01
jffs2_fserror
jffs2_fslink

View File

@@ -4,6 +4,7 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
fsdosfsname01
jffs2_fserror
jffs2_fslink

View File

@@ -4,6 +4,7 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
fsdosfsname01
jffs2_fserror
jffs2_fslink

View File

@@ -4,6 +4,7 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
flashdisk01
fsdosfsname01
jffs2_fserror

View File

@@ -4,6 +4,7 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
flashdisk01
fsdosfsname01
jffs2_fserror

View File

@@ -4,4 +4,5 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
fsdosfsname01

View File

@@ -4,4 +4,5 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
fsdosfsname01

View File

@@ -4,6 +4,7 @@
# Format is one line per test that is _NOT_ built.
#
include: testdata/dltests-broken-on-this-bsp.tcfg
fsdosfsname01
jffs2_fserror
jffs2_fslink

View File

@@ -8,6 +8,10 @@ AC_CACHE_CHECK([whether CPU supports networking],
rtems_cv_HAS_NETWORKING,
[dnl
case "$host" in
# do not have address space to hold BSD TCP/IP stack
avr*|h8300*|m32c*)
rtems_cv_HAS_NETWORKING="no"
;;
*-*-rtems*)
AS_IF([test "${RTEMS_HAS_NETWORKING}" = "yes"],[
# suppress libnetworking if one these types is not available