Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-06-06 Thread Tom Rini
On Thu, Jun 06, 2024 at 11:15:54AM +0200, Jerome Forissier wrote: > > > On 5/27/24 17:34, Tom Rini wrote: > > On Fri, May 24, 2024 at 06:19:54PM +0200, Jerome Forissier wrote: > > > >> This is a rework of a patch series by Maxim Uvarov: "net/lwip: add lwip > >> library for the network stack"

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-06-06 Thread Jerome Forissier
On 5/27/24 17:34, Tom Rini wrote: > On Fri, May 24, 2024 at 06:19:54PM +0200, Jerome Forissier wrote: > >> This is a rework of a patch series by Maxim Uvarov: "net/lwip: add lwip >> library for the network stack" [1]. The goal is to introduce the lwIP TCP/IP >> stack [2] [3] as an alternative

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-06-04 Thread Peter Robinson
> On Fri, May 24, 2024 at 06:19:54PM +0200, Jerome Forissier wrote: > > - Make the support of HTTPS in the wget command easier. Javier T. (CC'd) > > has some additional lwIP and Mbed TLS patches to do so. With that it > > becomes possible to fetch and launch a distro installer such as Debian > >

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-05-28 Thread Ilias Apalodimas
Hi all On Mon, 27 May 2024 at 15:47, Martin Husemann wrote: > > On Mon, May 27, 2024 at 02:45:01PM +0200, Jerome Forissier wrote: > > That certainly would work but again, isn't it a decision to be made > > by the device manufacturer or more generally the one who builds u-boot > > for the device?

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-05-27 Thread Tom Rini
On Fri, May 24, 2024 at 06:19:54PM +0200, Jerome Forissier wrote: > This is a rework of a patch series by Maxim Uvarov: "net/lwip: add lwip > library for the network stack" [1]. The goal is to introduce the lwIP TCP/IP > stack [2] [3] as an alternative to the current implementation in net/, >

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-05-27 Thread Martin Husemann
On Mon, May 27, 2024 at 02:45:01PM +0200, Jerome Forissier wrote: > That certainly would work but again, isn't it a decision to be made > by the device manufacturer or more generally the one who builds u-boot > for the device? Very true, and if you get the verification part working, your full

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-05-27 Thread Jerome Forissier
On 5/27/24 11:45, Martin Husemann wrote: > On Mon, May 27, 2024 at 11:36:26AM +0200, Jerome Forissier wrote: >> You're correct. The point I am making is about using a secure >> (authenticated) connection, and I should have clarified that. While using >> HTTPS might not be critical on a local

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-05-27 Thread Martin Husemann
On Mon, May 27, 2024 at 11:36:26AM +0200, Jerome Forissier wrote: > You're correct. The point I am making is about using a secure > (authenticated) connection, and I should have clarified that. While using > HTTPS might not be critical on a local network, things are different when > downloading

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-05-27 Thread Jerome Forissier
Hi Francesco, On 5/27/24 11:23, Francesco Dolcini wrote: > Hello Jerome, > > On Fri, May 24, 2024 at 06:19:54PM +0200, Jerome Forissier wrote: >> - Make the support of HTTPS in the wget command easier. Javier T. (CC'd) >> has some additional lwIP and Mbed TLS patches to do so. With that it >>

Re: [PATCH v2 00/14] Introduce the lwIP network stack

2024-05-27 Thread Francesco Dolcini
Hello Jerome, On Fri, May 24, 2024 at 06:19:54PM +0200, Jerome Forissier wrote: > - Make the support of HTTPS in the wget command easier. Javier T. (CC'd) > has some additional lwIP and Mbed TLS patches to do so. With that it > becomes possible to fetch and launch a distro installer such as

[PATCH v2 00/14] Introduce the lwIP network stack

2024-05-24 Thread Jerome Forissier
This is a rework of a patch series by Maxim Uvarov: "net/lwip: add lwip library for the network stack" [1]. The goal is to introduce the lwIP TCP/IP stack [2] [3] as an alternative to the current implementation in net/, selectable with Kconfig, and ultimately keep only lwIP if possible. Some