Re: [PATCHv8 05/15] net/lwip: implement tftp cmd

2023-09-13 Thread Maxim Uvarov
On Wed, 13 Sept 2023 at 14:38, Simon Goldschmidt wrote: > > > On 13.09.2023 08:15, Ilias Apalodimas wrote: > >> + > >> +/* > >> + * (C) Copyright 2023 Linaro Ltd. > >> + */ > >> + > >> +#include > >> +#include > >> +#include > >> +#include > >> + > >> +#include "tftp_client.h" > >> +#include

Re: [PATCHv8 05/15] net/lwip: implement tftp cmd

2023-09-13 Thread Simon Goldschmidt
On 13.09.2023 08:15, Ilias Apalodimas wrote: + +/* + * (C) Copyright 2023 Linaro Ltd. + */ + +#include +#include +#include +#include + +#include "tftp_client.h" +#include "tftp_server.h" +#include + +#include + +#include + +static ulong daddr; +static ulong size; + +static void *tftp_o

Re: [PATCHv8 05/15] net/lwip: implement tftp cmd

2023-09-12 Thread Ilias Apalodimas
> + > +/* > + * (C) Copyright 2023 Linaro Ltd. > + */ > + > +#include > +#include > +#include > +#include > + > +#include "tftp_client.h" > +#include "tftp_server.h" > +#include > + > +#include > + > +#include > + > +static ulong daddr; > +static ulong size; > + > +static void *tftp_open(co

[PATCHv8 05/15] net/lwip: implement tftp cmd

2023-09-08 Thread Maxim Uvarov
U-Boot recently got support for an alternative network stack using LWIP. Replace tftp command with the LWIP variant while keeping the output and error messages identical. Signed-off-by: Maxim Uvarov --- include/net/lwip.h | 14 +++- net/lwip/Makefile | 1 + net/lwip/a