diff --git a/net/net.c b/net/net.c index d164992fe..6e2c14b1b 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; }