Re: Pause on console in libmisc/shell detecting terminal size (mvme5500, beatnik)

2024-01-05 Thread Peter Dufault
> On Jan 5, 2024, at 1:36 PM, Peter Dufault wrote: > > I "#if 0"d out the call to "rtems_shell_term_row_column_swapped()" that > checks for a broken "tmux" terminal. That is what sends "\033[>0q" to the > console. I no longer see "0q" on the console but there is still a long pause > before

Re: [PATCH rtems-lwip - v3 0/2] Finalize LWIP Clean up

2024-01-05 Thread Kinsey Moore
These look good, thanks! Kinsey On Fri, Jan 5, 2024 at 1:57 PM wrote: > From: Bernd Moessner > > As kinsey recommended: > * removed unneccassry cast and __rtems__ gate > * changed function signature of xemacpsif_ip6_addr_ismulticast > > Bernd Moessner (2): > xemacpsif: fix compiler warnings

[PATCH rtems-lwip - v3 1/2] xemacpsif: fix compiler warnings

2024-01-05 Thread berndmoessner80
From: Bernd Moessner The compiler issues a couple of warnings as the Xilinx code omits to cast pointers ip_addr_t to the required ip4_addr_t or ip6_addr_t type. Note, ip_addr_t can hold ip4_addr_t and ip6_addr_t. Therefore, the complaints by GCC are correct, but do not indicate a major bug. --

[PATCH rtems-lwip - v3 2/2] xadapter: fix compiler warnings

2024-01-05 Thread berndmoessner80
From: Bernd Moessner This fix addresses two issues: 1) Wrong format specifier is used to print a 64bit address pointer 2) The compiler issues a couple of warnings as the Xilinx code omits to cast pointers ip_addr_t to the required ip4_addr_t or ip6_addr_t tpye. Note, ip_addr_t can hold ip4_add

[PATCH rtems-lwip - v3 0/2] Finalize LWIP Clean up

2024-01-05 Thread berndmoessner80
From: Bernd Moessner As kinsey recommended: * removed unneccassry cast and __rtems__ gate * changed function signature of xemacpsif_ip6_addr_ismulticast Bernd Moessner (2): xemacpsif: fix compiler warnings xadapter: fix compiler warnings .../src/contrib/ports/xilinx/netif/xadapter.c | 13 +

Re: [PATCH rtems-lwip - v2 2/2] xadapter: fix compiler warnings

2024-01-05 Thread Kinsey Moore
This looks good to me. Kinsey On Fri, Jan 5, 2024 at 12:50 PM wrote: > From: Bernd Moessner > > This fix addresses two issues: > > 1) Wrong format specifier is used to print a 64bit address pointer > 2) The compiler issues a couple of warnings as the Xilinx code omits to > cast pointers ip_add

Re: [PATCH rtems-lwip - v2 1/2] xemacpsif: fix compiler warnings

2024-01-05 Thread Kinsey Moore
Two comments inline below. On Fri, Jan 5, 2024 at 12:50 PM wrote: > From: Bernd Moessner > > The compiler issues a couple of warnings as the Xilinx code omits to cast > pointers ip_addr_t to > the required ip4_addr_t or ip6_addr_t tpye. > > Note, ip_addr_t can hold ip4_addr_t and ip6_addr_t. Th

[PATCH rtems-lwip - v2 2/2] xadapter: fix compiler warnings

2024-01-05 Thread berndmoessner80
From: Bernd Moessner This fix addresses two issues: 1) Wrong format specifier is used to print a 64bit address pointer 2) The compiler issues a couple of warnings as the Xilinx code omits to cast pointers ip_addr_t to the required ip4_addr_t or ip6_addr_t tpye. Note, ip_addr_t can hold ip4_add

[PATCH rtems-lwip - v2 0/2] Finalize LWIP Clean up

2024-01-05 Thread berndmoessner80
From: Bernd Moessner This finalizes the lwip clean up patch series. As discussed I've merged patches which targeted the same file and added __rtems__ gates when required. Bernd Moessner (2): xemacpsif: fix compiler warnings xadapter: fix compiler warnings .../src/contrib/ports/xilinx/neti

[PATCH rtems-lwip - v2 1/2] xemacpsif: fix compiler warnings

2024-01-05 Thread berndmoessner80
From: Bernd Moessner The compiler issues a couple of warnings as the Xilinx code omits to cast pointers ip_addr_t to the required ip4_addr_t or ip6_addr_t tpye. Note, ip_addr_t can hold ip4_addr_t and ip6_addr_t. Therefore, the complaints by GCC are correct, but do not indicate a major bug. --

Re: Pause on console in libmisc/shell detecting terminal size (mvme5500, beatnik)

2024-01-05 Thread Peter Dufault
> On Jan 4, 2024, at 8:01 PM, Joel Sherrill wrote: > > > Commit 7260887fa989c0141e7265cd851e00b4101410d8 "Work around tmux bug in > row and column" introduced 150ms timeout(usleep(1000) 150 times). I > tested On my board, the exact delay is about 300ms. Timeout (in process > shell command)

Re: [PATCH rtems] Include support files also for Zynq7000

2024-01-05 Thread Bernd Moessner
On 05.01.2024 18:54, Kinsey Moore wrote: I assume this is to support the Zynq7000 under rtems-lwip since it would need those installed headers. This looks good to me. Kinsey On Sat, Dec 23, 2023 at 7:00 AM wrote: From: Bernd Moessner ---  spec/build/bsps/arm/xilinx-zynq/grp.ym

Re: [PATCH rtems] Include support files also for Zynq7000

2024-01-05 Thread Kinsey Moore
I assume this is to support the Zynq7000 under rtems-lwip since it would need those installed headers. This looks good to me. Kinsey On Sat, Dec 23, 2023 at 7:00 AM wrote: > From: Bernd Moessner > > --- > spec/build/bsps/arm/xilinx-zynq/grp.yml | 2 ++ > 1 file changed, 2 insertions(+) > > di

[PATCH] bsps/xilinx-zynqmp-rpu: Ivalidate caches on start

2024-01-05 Thread Kinsey Moore
From: Stanislav Pankevich This corrects an issue where caches can be dirty on warm boot. --- bsps/arm/xilinx-zynqmp-rpu/start/bspstarthooks.c | 8 1 file changed, 8 insertions(+) diff --git a/bsps/arm/xilinx-zynqmp-rpu/start/bspstarthooks.c b/bsps/arm/xilinx-zynqmp-rpu/start/bspstarth