diff --git a/src/net/udp/dhcp.c b/src/net/udp/dhcp.c index be03096b..60d65c47 100644 --- a/src/net/udp/dhcp.c +++ b/src/net/udp/dhcp.c @@ -1471,3 +1471,9 @@ int start_pxebs ( struct interface *job, struct net_device *netdev, ref_put ( &dhcp->refcnt ); return rc; } + +/** DHCP network device configurator */ +struct net_device_configurator dhcp_configurator __net_device_configurator = { + .name = "dhcp", + .start = start_dhcp, +};