Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-25 Thread Jerome Forissier
On 6/25/24 05:20, Jon Humphreys wrote: > Jerome Forissier writes: > >> On 6/24/24 08:21, Jon Humphreys wrote: >>> Jerome Forissier writes: >>> Add support for the wget command with NET_LWIP. Based on code initially developed by Maxim U. Signed-off-by: Jerome Forissier >

Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-24 Thread Jon Humphreys
Jerome Forissier writes: > On 6/24/24 08:21, Jon Humphreys wrote: >> Jerome Forissier writes: >> >>> Add support for the wget command with NET_LWIP. >>> >>> Based on code initially developed by Maxim U. >>> >>> Signed-off-by: Jerome Forissier >>> Co-developed-by: Maxim Uvarov >>> Cc: Maxim Uv

Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-24 Thread Jon Humphreys
Subject: [PATCH] net-lwip: Add message if not using http:// for wget U-Boot's wget only supports http://, so give the user a clue if they don't use it. Signed-off-by: Jonathan Humphreys --- net-lwip/wget.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-lwip/wget.c b/

Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-24 Thread Jon Humphreys
Subject: [PATCH] net-lwip: fixes off-by-one array access error with wget When wget parses the url and extracts the host, it is off by one on the index to terminate the character array. Signed-off-by: Jonathan Humphreys --- net-lwip/wget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) d

Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-24 Thread Jon Humphreys
Jerome Forissier writes: > Add support for the wget command with NET_LWIP. > > Based on code initially developed by Maxim U. > > Signed-off-by: Jerome Forissier > Co-developed-by: Maxim Uvarov > Cc: Maxim Uvarov > Signed-off-by: Jerome Forissier > --- > cmd/Kconfig| 7 ++ > cmd/net

Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-24 Thread Jerome Forissier
On 6/24/24 08:26, Jon Humphreys wrote: > Subject: [PATCH] net-lwip: Add message if not using http:// for wget > > U-Boot's wget only supports http://, so give the user a clue if they don't > use it. > > Signed-off-by: Jonathan Humphreys > --- > net-lwip/wget.c | 4 +++- > 1 file changed, 3 i

Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-24 Thread Jerome Forissier
On 6/24/24 08:25, Jon Humphreys wrote: > Subject: [PATCH] net-lwip: fixes off-by-one array access error with wget > > When wget parses the url and extracts the host, it is off by one on the > index to terminate the character array. > > Signed-off-by: Jonathan Humphreys > --- > net-lwip/wget.

Re: [PATCH v4 10/14] net-lwip: add wget command

2024-06-24 Thread Jerome Forissier
On 6/24/24 08:21, Jon Humphreys wrote: > Jerome Forissier writes: > >> Add support for the wget command with NET_LWIP. >> >> Based on code initially developed by Maxim U. >> >> Signed-off-by: Jerome Forissier >> Co-developed-by: Maxim Uvarov >> Cc: Maxim Uvarov >> Signed-off-by: Jerome Fori

[PATCH v4 10/14] net-lwip: add wget command

2024-06-17 Thread Jerome Forissier
Add support for the wget command with NET_LWIP. Based on code initially developed by Maxim U. Signed-off-by: Jerome Forissier Co-developed-by: Maxim Uvarov Cc: Maxim Uvarov Signed-off-by: Jerome Forissier --- cmd/Kconfig| 7 ++ cmd/net-lwip.c | 8 ++ include/net-lwip.h | 18