summaryrefslogtreecommitdiff
path: root/networkconfig-icecube.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-12-08 10:46:46 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-12-08 10:46:46 +0000
commit2da63bc3daa18eddfd580025dd35cac263cc6ddd (patch)
tree115969dd14c0b5ecd2f2b982a4e80f177b9549e6 /networkconfig-icecube.h
parentf3d1d9619908c0d1deddecce6766f802ddedb290 (diff)
2010-12-08 Sebastian Huber <Sebastian.Huber@embedded-brains.de>
* networkconfig.h, networkconfig-qemu.h, networkconfig-icecube.h, networkconfig-mpc8313erdb.h: Loop back interface will be initialized now during normal initialization via rtems_bsdnet_initialize_network().
Diffstat (limited to 'networkconfig-icecube.h')
-rw-r--r--networkconfig-icecube.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/networkconfig-icecube.h b/networkconfig-icecube.h
index ade7e7b..c778e04 100644
--- a/networkconfig-icecube.h
+++ b/networkconfig-icecube.h
@@ -44,32 +44,13 @@
static char ethernet_address[6] = { 0x00, 0x04, 0x9F, 0x00, 0x5B, 0x21 };
#endif
-#ifdef RTEMS_USE_LOOPBACK
-/*
- * Loopback interface
- */
-extern void rtems_bsdnet_loopattach();
-static struct rtems_bsdnet_ifconfig loopback_config = {
- "lo0", /* name */
- rtems_bsdnet_loopattach, /* attach function */
- NULL, /* link to next interface */
- "127.0.0.1", /* IP address */
- "255.0.0.0", /* IP net mask */
-};
-#endif
-
/*
* Default network interface
*/
static struct rtems_bsdnet_ifconfig netdriver_config = {
RTEMS_BSP_NETWORK_DRIVER_NAME, /* name */
RTEMS_BSP_NETWORK_DRIVER_ATTACH, /* attach function */
-
-#ifdef RTEMS_USE_LOOPBACK
- &loopback_config, /* link to next interface */
-#else
NULL, /* No more interfaces */
-#endif
#if (defined (RTEMS_USE_BOOTP))
NULL, /* BOOTP supplies IP address */