summaryrefslogtreecommitdiffstats
path: root/net/net.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/net.c')
-rw-r--r--net/net.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/net.c b/net/net.c
index d164992fe8..6e2c14b1bc 100644
--- a/net/net.c
+++ b/net/net.c
@@ -666,6 +666,11 @@ out:
return ret;
}
+static struct device_d net_device = {
+ .name = "net",
+ .id = DEVICE_ID_SINGLE,
+};
+
static int net_init(void)
{
int i;
@@ -673,6 +678,10 @@ static int net_init(void)
for (i = 0; i < PKTBUFSRX; i++)
NetRxPackets[i] = xmemalign(32, PKTSIZE);
+ register_device(&net_device);
+ dev_add_param(&net_device, "nameserver", NULL, NULL, 0);
+ dev_add_param(&net_device, "domainname", NULL, NULL, 0);
+
return 0;
}