Re: [PATCH v4 05/14] net-lwip: add DHCP support and dhcp commmand

2024-06-19 Thread Ilias Apalodimas
[...] > >> + > >> +static struct netif *new_netif(bool with_ip) > >> +{ > >> +unsigned char enetaddr[ARP_HLEN]; > >> +char hwstr[MAC_ADDR_STRLEN]; > >> +ip4_addr_t ip, mask, gw; > >> +struct udevice *dev; > >> +struct netif *netif; > > > > This does not fit into the driver mod

Re: [PATCH v4 05/14] net-lwip: add DHCP support and dhcp commmand

2024-06-19 Thread Jerome Forissier
On 6/17/24 18:54, Heinrich Schuchardt wrote: > On 17.06.24 17:32, Jerome Forissier wrote: >> Add what it takes to enable NETDEVICES with NET_LWIP and enable DHCP as >> well as the dhcp command. CMD_TFTPBOOT is selected by BOOTMETH_EFI due >> to this code having an implicit dependency on do_tftpb

Re: [PATCH v4 05/14] net-lwip: add DHCP support and dhcp commmand

2024-06-17 Thread Heinrich Schuchardt
On 17.06.24 17:32, Jerome Forissier wrote: Add what it takes to enable NETDEVICES with NET_LWIP and enable DHCP as well as the dhcp command. CMD_TFTPBOOT is selected by BOOTMETH_EFI due to this code having an implicit dependency on do_tftpb(). Signed-off-by: Jerome Forissier --- Makefile

[PATCH v4 05/14] net-lwip: add DHCP support and dhcp commmand

2024-06-17 Thread Jerome Forissier
Add what it takes to enable NETDEVICES with NET_LWIP and enable DHCP as well as the dhcp command. CMD_TFTPBOOT is selected by BOOTMETH_EFI due to this code having an implicit dependency on do_tftpb(). Signed-off-by: Jerome Forissier --- Makefile| 6 + boot/Kconfig|