summaryrefslogtreecommitdiff
path: root/networkconfig-qemu.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-qemu.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-qemu.h')
-rw-r--r--networkconfig-qemu.h31
1 files changed, 5 insertions, 26 deletions
diff --git a/networkconfig-qemu.h b/networkconfig-qemu.h
index 426da4d..8576d19 100644
--- a/networkconfig-qemu.h
+++ b/networkconfig-qemu.h
@@ -61,9 +61,6 @@
* must also define FIXED_NETMASK
* FIXED_NETMASK <undefined> IP netmask string
* (e.g. "255.255.255.0")
- * LO_IF_ONLY <undefined> If defined, do NOT configure
- * any ethernet driver but only the
- * loopback interface.
* MULTI_NETDRIVER <undefined> ugly hack; if defined try to probe
* a variety of PCI and ISA drivers
* (i386 ONLY) use is discouraged!
@@ -140,9 +137,7 @@ const int gesysNetworkTaskPriority = NETWORK_TASK_PRIORITY;
#define FIXED_NETMASK 0
#endif
-#ifdef LO_IF_ONLY
-#undef NIC_NAME
-#elif !defined(NIC_NAME)
+#if !defined(NIC_NAME)
#ifdef MULTI_NETDRIVER
@@ -230,8 +225,6 @@ extern int if_index;
#endif /* ifdef MULTI_NETDRIVER */
-#endif /* ifdef LO_IF_ONLY */
-
#ifdef NIC_NAME
extern int NIC_ATTACH();
@@ -245,30 +238,16 @@ static struct rtems_bsdnet_ifconfig netdriver_config[1] = {{
FIXED_NETMASK
}};
#else
-#ifndef LO_IF_ONLY
-#warning "NO KNOWN NETWORK DRIVER FOR THIS BSP -- YOU MAY HAVE TO EDIT rtems_netconfig.c"
-#endif
+#warning "NO KNOWN NETWORK DRIVER FOR THIS BSP -- YOU MAY HAVE TO EDIT networkconfig.h"
#endif
-extern void rtems_bsdnet_loopattach();
-static struct rtems_bsdnet_ifconfig loopback_config = {
- "lo0", /* name */
- (int (*)(struct rtems_bsdnet_ifconfig *, int))rtems_bsdnet_loopattach, /* attach function */
-#ifdef NIC_NAME
- netdriver_config, /* link to next interface */
-#else
- 0, /* link to next interface */
-#endif
- "127.0.0.1", /* IP address */
- "255.0.0.0", /* IP net mask */
-};
-
struct rtems_bsdnet_config rtems_bsdnet_config = {
- &loopback_config, /* Network interface */
#ifdef NIC_NAME
+ netdriver_config, /* link to next interface */
RTEMS_DO_BOOTP, /* Use BOOTP to get network configuration */
#else
- 0, /* Use BOOTP to get network configuration */
+ 0,
+ 0,
#endif
NETWORK_TASK_PRIORITY, /* Network task priority */
#if defined(MEMORY_CUSTOM)