Re: [PATCHv6 05/14] net/lwip: implement tftp cmd

2023-08-14 Thread Maxim Uvarov
On Mon, 14 Aug 2023 at 20:25, Ilias Apalodimas wrote: > > +// SPDX-License-Identifier: GPL-2.0 > > + > > +/* > > + * (C) Copyright 2023 Linaro Ltd. > > + */ > > + > > +#include > > +#include > > +#include > > +#include > > + > > +#include "lwip/apps/tftp_client.h" > > +#include "lwip/apps/tf

Re: [PATCHv6 05/14] net/lwip: implement tftp cmd

2023-08-14 Thread Ilias Apalodimas
> +// SPDX-License-Identifier: GPL-2.0 > + > +/* > + * (C) Copyright 2023 Linaro Ltd. > + */ > + > +#include > +#include > +#include > +#include > + > +#include "lwip/apps/tftp_client.h" > +#include "lwip/apps/tftp_server.h" > +#include > + > +#include > + > +#include > + > +#if LWIP_UDP W

[PATCHv6 05/14] net/lwip: implement tftp cmd

2023-08-14 Thread Maxim Uvarov
Implement function for dhcp command with lwIP variant. Usage and output is the same as the original command. This code called by compatibility code between U-Boot and lwIP. Signed-off-by: Maxim Uvarov --- net/lwip/Makefile | 1 + net/lwip/apps/tftp/Makefile| 16 net/lwip