Re: [PATCH v1] bsps/amd64: remove -Werror from ABI flags

2022-08-25 Thread Chris Johns
Stephen, The email address in the patch is not yours or not set on your system and the commit message line length exceeds 80 characters. It has been pushed and cannot be changed so it would be good if you could please check your set up to make sure patches are suitable for the repo. Thanks Chris

Re: [PATCH rtems-lwip v1 0/5] Clean and update lwIP import

2022-08-25 Thread Chris Johns
Looks good. Thanks Chris On 26/8/2022 5:43 am, Kinsey Moore wrote: > This patch set finishes cleaning up the imported lwIP code by removing > extraneous changes and updates to the latest release. This also fixes a > bug preventing compilation with earlier versions of Python. > > >

[PATCH rtems-lwip v1 4/5] lwip: Update to 2.1.3

2022-08-25 Thread Kinsey Moore
This updates lwIP to the STABLE-2_1_3_RELEASE tag. --- lwip/src/api/api_lib.c| 12 ++-- lwip/src/api/api_msg.c| 3 + lwip/src/api/netdb.c | 9 ++- lwip/src/api/sockets.c| 14 +++--

[PATCH rtems-lwip v1 5/5] lwip.py: Support Python earlier than 3.9

2022-08-25 Thread Kinsey Moore
The removeprefix method is only available on Python 3.9 and later. This replaces it with an equivalent function. --- lwip.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lwip.py b/lwip.py index 251f11f..70c9471 100644 --- a/lwip.py +++ b/lwip.py @@ -29,6 +29,11 @@

[PATCH rtems-lwip v1 1/5] lwip-to-rtems.py: Add support for reverse changes

2022-08-25 Thread Kinsey Moore
This adds the necessary support for moving changes back and forth to the upstream repository. --- lwip-to-rtems.py | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/lwip-to-rtems.py b/lwip-to-rtems.py index acd6922..1be2628 100755 --- a/lwip-to-rtems.py +++

[PATCH rtems-lwip v1 3/5] Update lwip submodule to 2.1.3

2022-08-25 Thread Kinsey Moore
--- lwip-upstream | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lwip-upstream b/lwip-upstream index 159e31b..6ca936f 16 --- a/lwip-upstream +++ b/lwip-upstream @@ -1 +1 @@ -Subproject commit 159e31b689577dbf69cf0683bbaffbd71fa5ee10 +Subproject commit

[PATCH rtems-lwip v1 2/5] lwip: Finish cleaning up source imports

2022-08-25 Thread Kinsey Moore
This removes all changes that weren't gated properly on __rtems__ including moving getaddrinfo to rtemslwip/. The imported lwip source is now ready to be updated when necessary. --- lwip/src/api/api_msg.c| 2 -- lwip/src/api/netdb.c | 41 --

[PATCH rtems-lwip v1 0/5] Clean and update lwIP import

2022-08-25 Thread Kinsey Moore
This patch set finishes cleaning up the imported lwIP code by removing extraneous changes and updates to the latest release. This also fixes a bug preventing compilation with earlier versions of Python. ___ devel mailing list devel@rtems.org

[PATCH v5 1/1] bsp/riscv: Add NOEL-V BSP

2022-08-25 Thread Daniel Cederman
From: Martin Aberg Added support for Cobham Gaisler NOEL-V systems. The NOEL-V support is implemented as a riscv BSP. Both 32-bit and 64-bit processor systems are supported. Cobham Gaisler's NOEL-V RISC-V processor IP is described here: https://www.gaisler.com/NOELV Compatible with the

[PATCH v5 0/1] NOEL-V BSP

2022-08-25 Thread Daniel Cederman
v5 Made RISCV_CONSOLE_MAX_APBUART_DEVICES an option bsp_fatal if no uart clock frequency is found Changed CONSOLE_USE_INTERRUPTS to BSP_CONSOLE_USE_INTERRUPTS Added error codes for APBUART Get work area size from /memory node Martin Aberg (1): bsp/riscv: Add NOEL-V BSP

Re: [PATCH RTEMS] Add i2c command

2022-08-25 Thread Christian MAUDERER
Am 25.08.22 um 07:45 schrieb chr...@rtems.org: The patch adds the i2c command. It is a single command to test and explore I2C buses on hardware. The command lets you string together reads and writes on a single command line to access a number of devices so you can script basic functionality