summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-20 22:16:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-20 22:16:28 +0000
commitddd57c9a9ad661c22a6b9810ef112563906c8ae6 (patch)
tree40865aa416abaf8c31f64557c9770c3892ad8c08
parentb80aaa9784eada594a76216cdc8c44d17131d3a6 (diff)
2008-08-20 Joel Sherrill <joel.sherrill@OARcorp.com>
* networkconfig-qemu.h, networkconfig.h: Add missing initializers.
-rw-r--r--ChangeLog4
-rw-r--r--networkconfig-qemu.h7
-rw-r--r--networkconfig.h9
3 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 81e95d3..63306fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-08-20 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * networkconfig-qemu.h, networkconfig.h: Add missing initializers.
+
2008-02-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* networkconfig-icecube.h, networkconfig-qemu.h, networkconfig.h:
diff --git a/networkconfig-qemu.h b/networkconfig-qemu.h
index 076aae0..6b42cf1 100644
--- a/networkconfig-qemu.h
+++ b/networkconfig-qemu.h
@@ -120,7 +120,14 @@ struct rtems_bsdnet_config rtems_bsdnet_config = {
"10.0.0.1", /* Log host */
{"10.0.2.3" }, /* Name server(s) */
{"" }, /* NTP server(s) */
+#else
+ #error "Fill me in"
#endif /* !RTEMS_USE_BOOTP */
+ 1, /* sb_efficiency */
+ 0, /* udp_tx_buf_size */
+ 0, /* udp_rx_buf_size */
+ 0, /* tcp_tx_buf_size */
+ 0 /* tcp_rx_buf_size */
};
diff --git a/networkconfig.h b/networkconfig.h
index 96a4461..1739577 100644
--- a/networkconfig.h
+++ b/networkconfig.h
@@ -57,7 +57,14 @@ struct rtems_bsdnet_config rtems_bsdnet_config = {
"nodomain.com", /* Domain name */
"127.0.0.1", /* Gateway */
"127.0.0.1", /* Log host */
- {"127.0.0.1" }, /* Name server(s) */
+ {"127.0.0.1" }, /* Name server(s) */
+ {"127.0.0.1" }, /* NTP server(s) */
+ 0, /* sb_efficiency */
+ 0, /* udp_tx_buf_size */
+ 0, /* udp_rx_buf_size */
+ 0, /* tcp_tx_buf_size */
+ 0 /* tcp_rx_buf_size */
+
};
/*