On 5/29/25 23:49, Tim Harvey wrote: > Enable IP_FRAG and IP_REASSEMBLY to allow packets larger than MTU. > > Signed-off-by: Tim Harvey <thar...@gateworks.com> > --- > lib/lwip/u-boot/lwipopts.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/lwip/u-boot/lwipopts.h b/lib/lwip/u-boot/lwipopts.h > index edac74ff7a21..1818a445dc5e 100644 > --- a/lib/lwip/u-boot/lwipopts.h > +++ b/lib/lwip/u-boot/lwipopts.h > @@ -72,8 +72,8 @@ > > #define IP_FORWARD 0 > #define IP_OPTIONS_ALLOWED 1 > -#define IP_REASSEMBLY 0 > -#define IP_FRAG 0 > +#define IP_REASSEMBLY 1 > +#define IP_FRAG 1 > #define IP_REASS_MAXAGE 3 > #define IP_REASS_MAX_PBUFS 4 > #define IP_FRAG_USES_STATIC_BUF 0 Reviewed-by: Jerome Forissier <jerome.foriss...@linaro.org> Thanks, -- Jerome
- [PATCH 1/6] net: lwip: call sys_check_timeouts and schedu... Tim Harvey
- [PATCH 2/6] net: lwip: enable IP_FRAG and IP_REASSEM... Tim Harvey
- Re: [PATCH 2/6] net: lwip: enable IP_FRAG and IP... Jerome Forissier
- [PATCH 3/6] net: lwip: tftp: add support for setting... Tim Harvey
- Re: [PATCH 3/6] net: lwip: tftp: add support for... Jerome Forissier
- [PATCH 5/6] net: lwip: wget: initialize dns if a hos... Tim Harvey
- Re: [PATCH 5/6] net: lwip: wget: initialize dns ... Jerome Forissier
- [PATCH 4/6] net: lwip: move dns init to common funct... Tim Harvey
- Re: [PATCH 4/6] net: lwip: move dns init to comm... Jerome Forissier
- [PATCH 6/6] net: lwip: wget: use loadaddr env var fo... Tim Harvey
- Re: [PATCH 6/6] net: lwip: wget: use loadaddr en... Jerome Forissier
- Re: [PATCH 1/6] net: lwip: call sys_check_timeouts a... Jerome Forissier