Re: Throughput/Goodput analysis on RTEMS

2021-07-15 Thread Vijay Kumar Banerjee
On Sun, Jul 11, 2021 at 6:42 PM Chris Johns wrote: > > On 10/7/21 1:28 pm, Vijay Kumar Banerjee wrote: > > On Fri, Jul 9, 2021 at 8:25 PM Chris Johns wrote: > >> > >> On 2/7/21 4:40 am, Vijay Kumar Banerjee wrote: > >>> I'm planning to do a throughput analysis on the RTEMS network stacks > >>>

[PATCH] build: Add the BSP family to the enable set

2021-07-15 Thread Sebastian Huber
This makes it possible to use the BSP family in expressions of the enabled-by attribute. --- wscript | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 487951fdba..1331ae149e 100755 --- a/wscript +++ b/wscript @@ -1387,7 +1387,12 @@ def

[PATCH] build: Prefer variant default value over family

2021-07-15 Thread Sebastian Huber
Update #4468. --- wscript | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wscript b/wscript index 1206c4d882..bba0c1502a 100755 --- a/wscript +++ b/wscript @@ -694,14 +694,14 @@ class OptionItem(Item): def default_value(self, variant, family): value =

Re: [PATCH] build: Add the BSP family to the enable set

2021-07-15 Thread Chris Johns
That is a nice change. OK to push Chris On 15/7/21 4:19 pm, Sebastian Huber wrote: > This makes it possible to use the BSP family in expressions of the enabled-by > attribute. > --- > wscript | 7 ++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/wscript b/wscript >

[PATCH] sparc: Prefer RTEMS_FATAL_SOURCE_EXCEPTION

2021-07-15 Thread Sebastian Huber
Prefer RTEMS_FATAL_SOURCE_EXCEPTION over INTERNAL_ERROR_ILLEGAL_USE_OF_FLOATING_POINT_UNIT since the fatal code (rtems_exception_frame) provides more context. --- cpukit/score/cpu/sparc/sparc-bad-trap.S | 14 -- testsuites/sptests/spfatal30/init.c | 37 +++--

Re: [PATCH v2] bsps/irq: Implement new directives for GICv2/3

2021-07-15 Thread Sebastian Huber
On 14/07/2021 21:37, Kinsey Moore wrote: Looks good, minor nits below. Thanks for the review. I will fixed it before I push the commits. -- embedded brains GmbH Herr Sebastian HUBER Dornierstr. 4 82178 Puchheim Germany email: sebastian.hu...@embedded-brains.de phone: +49-89-18 94 741 - 16

Re: [PATCH] build: Prefer variant default value over family

2021-07-15 Thread Chris Johns
Yes this is good thing to do and thanks. Please push. Chris On 15/7/21 4:07 pm, Sebastian Huber wrote: > Update #4468. > --- > wscript | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/wscript b/wscript > index 1206c4d882..bba0c1502a 100755 > --- a/wscript > +++

Re: [PATCH] covoar: Fix errors building on FreeBSD and clang

2021-07-15 Thread Chris Johns
On 15/7/21 12:45 pm, Alex White wrote: > On Tue, Jul 6, 2021 at 7:55 PM Chris Johns wrote: >> >> On 3/7/21 5:56 am, Alex White wrote: >> > On Wed, Jun 30, 2021 at 11:40 PM wrote: >> >> >> >> From: Chris Johns >> >> >> >> - The member variable `path_` cannot be a reference and initialised to >>

Re: [PATCH rtems-docs v1] readme: Minor clarifications and fixes

2021-07-15 Thread Gedare Bloom
On Wed, Jul 14, 2021 at 8:44 AM Stephen Clark wrote: > > Added some instructions for setting up CentOS 8. > Fixed some minor typographical errors. > Updated a dead link. > Reworded some sentences for clarity > --- > README.txt | 58 ++ > 1 file

[PATCH rtems-docs] user/imxrt: Add notes about problems with EVB

2021-07-15 Thread Christian Mauderer
There are some possible problems with the i.MXRT1050 evaluation board. Make some notes about that in the BSP manual. --- user/bsps/arm/imxrt.rst | 9 + 1 file changed, 9 insertions(+) diff --git a/user/bsps/arm/imxrt.rst b/user/bsps/arm/imxrt.rst index 3f8b270..f8d9731 100644 ---

Re: [PATCH rtems-docs v1 1/2] xilinx-zynqmp.rst: Documented SDIO driver

2021-07-15 Thread Gedare Bloom
ok On Wed, Jul 14, 2021 at 9:03 AM Stephen Clark wrote: > > Added documentation for SDIO driver. > --- > user/bsps/aarch64/xilinx-zynqmp.rst | 14 ++ > 1 file changed, 14 insertions(+) > > diff --git a/user/bsps/aarch64/xilinx-zynqmp.rst > b/user/bsps/aarch64/xilinx-zynqmp.rst >

Re: [PATCH rtems-libbsd v1] nexus: Added SDHCI driver to ZynqMP

2021-07-15 Thread Gedare Bloom
looks fine to me On Mon, Jul 12, 2021 at 5:14 PM Stephen Clark wrote: > > Made ZynqMP build with the SDHCI driver. > --- > rtemsbsd/include/bsp/nexus-devices.h | 4 +++ > .../include/machine/rtems-bsd-nexus-bus.h | 29 +++ > 2 files changed, 33 insertions(+) > >

Re: [PATCH v3] bsps: Move optfdt* files to shared parent directory

2021-07-15 Thread Gedare Bloom
This patch looks fine to me if someone can pick it up. It does touch a lot of build BSPs though. On Fri, Jul 9, 2021 at 12:16 AM Pranav Dangi wrote: > > ping. (Apart from moving the files in a shared directory, a part of this > patch also gets the RTEMS master branch to work on all the Pi's

Re: GSoC - Code Formatting and Style Checking for RTEMS score

2021-07-15 Thread Ida Delphine
Hello everyone, >From the discussion on discord it looks like clang-format cannot be installed on MacOS and FreeBSD. Is there any alternative or way to have it on these operating systems? On Wed, 5 May 2021, 10:21 pm Ida Delphine, wrote: > Hello everyone, > > Regarding this project

Re: GSoC - Code Formatting and Style Checking for RTEMS score

2021-07-15 Thread Gedare Bloom
On Thu, Jul 15, 2021 at 5:19 AM Ida Delphine wrote: > > Hello everyone, > From the discussion on discord it looks like clang-format cannot be installed > on MacOS and FreeBSD. Is there any alternative or way to have it on these > operating systems? > What are the challenges with them? Can

Re: New Defects reported by Coverity Scan for RTEMS

2021-07-15 Thread Joel Sherrill
On Thu, Jul 15, 2021, 9:09 AM Gedare Bloom wrote: > I think we have been excluding testsuites. The setting appears to > still be there: > Tests */testsuites/* Ignored=Yes > > I think maybe the pattern needs to be updated to put a dot before each > asterisk: .*/testsuites/.* > No idea

Re: [PATCH 2/2] This adds a way to print the host triplet

2021-07-15 Thread Robin Müller
Hi, I think this patch was forgotten so I'm just pushing it up again :-) Kind Regards Robin On Thu, 25 Feb 2021 at 10:57, Robin Müller wrote: > I still think it would be nice if very common tool suites like ARM could > be installed /downloaded in a pre-compiled way at least for Windows

Re: [PATCH v3] bsps: Move optfdt* files to shared parent directory

2021-07-15 Thread Joel Sherrill
I was going to do a sweep of all BSPs and then push but had an issue with the patch. If something happened with the mail Pranav, please just compress it and send it to me privately as an attachment. If it needs rebasing, please take care of that. [joel@devel rtems]$ git am /tmp/x Applying: bsps:

Typical workflows for RTEMS-based development using Xilinx Zynq 7000

2021-07-15 Thread Stanislav Pankevich
Hello everyone, I am looking for information on how to start the development with RTEMS on the Arty Z7 development board (Z7-20). I see that there are at least two existing BSPs that could help me to get started: xilinx_zynq_zc702 and xilinx_zynq_zedboard. I followed the instructions for

Re: [PATCH V2] closes #3889 new defect Test needed for timer_create with CLOCK_MONOTONIC

2021-07-15 Thread Gedare Bloom
The first line of the commit should be shorter. Use a blank line, and then close the ticket with the Closes # command. https://devel.rtems.org/wiki/Developer/Git#GitCommits We need to move this information into https://docs.rtems.org/branches/master/eng/management.html On Thu, Jul 8, 2021

Re: [PATCH v2] rtems:modify spthread01 testsuites for cond variable signal and broadcast intf rtems:making rectification according to Sebastian Huber's opinions

2021-07-15 Thread Gedare Bloom
The commit message should be rewritten. someone can do this on a push, but if you send a v3 of the patch, please simplify the first line of the commit message, like "testsuites/sptests: add cond variable signal and broadcast to spthread01" That should be an adequate commit message for this

[PATCH rtems-docs v2 2/2] README: Added centOS 8 instructions

2021-07-15 Thread Stephen Clark
Added some instructions for setting up CentOS 8. --- README.txt | 11 +++ 1 file changed, 11 insertions(+) diff --git a/README.txt b/README.txt index 13bf8e6..828c9e7 100644 --- a/README.txt +++ b/README.txt @@ -287,6 +287,17 @@ PATH: export

[PATCH rtems-docs v2 1/2] README: Minor clarifications and fixes

2021-07-15 Thread Stephen Clark
Fixed some minor typographical errors. Updated a dead link. Reworded some sentences for clarity. --- README.txt | 49 + 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/README.txt b/README.txt index 03f57ed..13bf8e6 100644 ---

Re: GSoC - Code Formatting and Style Checking for RTEMS score

2021-07-15 Thread Ida Delphine
I will check on this On Thu, Jul 15, 2021 at 3:39 PM Gedare Bloom wrote: > On Thu, Jul 15, 2021 at 5:19 AM Ida Delphine wrote: > > > > Hello everyone, > > From the discussion on discord it looks like clang-format cannot be > installed on MacOS and FreeBSD. Is there any alternative or way to

Re: [PATCH rtems-libbsd 0/4] Beagle BSP: USB Template Driver for CDC Ethernet

2021-07-15 Thread Christian Mauderer
Hello Husni, On 14/07/2021 20:18, Ahamed Husni wrote: Hi, Ping :) Sorry for the late reply. I hoped that someone else would review the patches. I already had a look at them before you sent them. I only found two small points. Otherwise the patches look fine. Can you fix the two points

Re: [PATCH rtems-libbsd 3/4] nexus-devices: Include CDC Ethernet for Beagle

2021-07-15 Thread Christian Mauderer
On 06/07/2021 19:00, Husni Faiz wrote: Configure bus for CDC Ethernet Include CDC Ethernet in Beagle BSP Signed-off-by: Husni Faiz --- rtemsbsd/include/bsp/nexus-devices.h | 5 + rtemsbsd/include/machine/rtems-bsd-nexus-bus.h | 17 + 2 files changed, 22

Re: GSoC - Code Formatting and Style Checking for RTEMS score

2021-07-15 Thread Chris Johns
Hi, I will bring the discussion to the devel list and I hope the comments are in line with the purpose of the project. Please correct what I say if it is not. The pre-commit script that is in github review is a good base and I believe it solves that problem for those on Linux. It is a great

Re: [PATCH 2/2] This adds a way to print the host triplet

2021-07-15 Thread Chris Johns
On 15/7/21 9:49 pm, Robin Müller wrote: > I think this patch was forgotten so I'm just pushing it up again :-) It was and sorry about that. Minor change below ... no need to say "Displaying" as we know that. :) if opts.get_arg('--list-host'): print('Host operating system information: ')

[PATCH v3] spthread01:add cond variable signal and broadcast test case

2021-07-15 Thread tianye
From: Tian Ye --- testsuites/sptests/spthread01/init.c | 86 +++- 1 file changed, 74 insertions(+), 12 deletions(-) diff --git a/testsuites/sptests/spthread01/init.c b/testsuites/sptests/spthread01/init.c index 9044ca2..b64d0a5 100644 ---

Re: [PATCH] covoar: Fix errors building on FreeBSD and clang

2021-07-15 Thread Alex White
On Thu, Jul 15, 2021 at 1:20 AM Chris Johns wrote: > > On 15/7/21 12:45 pm, Alex White wrote: > > On Tue, Jul 6, 2021 at 7:55 PM Chris Johns wrote: > >> > >> On 3/7/21 5:56 am, Alex White wrote: > >> > On Wed, Jun 30, 2021 at 11:40 PM wrote: > >> >> > >> >> From: Chris Johns > >> >> > >> >> -

Re: [PATCH] covoar: Fix errors building on FreeBSD and clang

2021-07-15 Thread Chris Johns
On 16/7/21 12:22 pm, Alex White wrote: > > On Thu, Jul 15, 2021 at 1:20 AM Chris Johns wrote: >> >> On 15/7/21 12:45 pm, Alex White wrote: >> > On Tue, Jul 6, 2021 at 7:55 PM Chris Johns wrote: >> >> >> >> On 3/7/21 5:56 am, Alex White wrote: >> >> > On Wed, Jun 30, 2021 at 11:40 PM wrote: >>