Re: [PATCH] spec/libdebugger: Only enable for supported architectures

2021-10-20 Thread Sebastian Huber
On 21/10/2021 07:45, Chris Johns wrote: On 21/10/21 4:30 pm, Sebastian Huber wrote: On 21/10/2021 04:09, chr...@rtems.org wrote: From: Chris Johns ---   spec/build/cpukit/libdebugger.yml | 5 -   spec/build/testsuites/libtests/debugger01.yml | 4 +---   2 files changed, 5 inse

Re: [PATCH] spec/libdebugger: Only enable for supported architectures

2021-10-20 Thread Chris Johns
On 21/10/21 4:30 pm, Sebastian Huber wrote: > On 21/10/2021 04:09, chr...@rtems.org wrote: >> From: Chris Johns >> >> --- >>   spec/build/cpukit/libdebugger.yml | 5 - >>   spec/build/testsuites/libtests/debugger01.yml | 4 +--- >>   2 files changed, 5 insertions(+), 4 deletions(-) >>

Re: [PATCH] spec/libdebugger: Only enable for supported architectures

2021-10-20 Thread Sebastian Huber
On 21/10/2021 04:09, chr...@rtems.org wrote: From: Chris Johns --- spec/build/cpukit/libdebugger.yml | 5 - spec/build/testsuites/libtests/debugger01.yml | 4 +--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/spec/build/cpukit/libdebugger.yml b/spec/build/c

Re: [PATCH v2] rtems-kernel: Implement kernel recipe using waf

2021-10-20 Thread Chris Johns
On 14/10/21 9:08 am, Ryan Long wrote: > Closes #4145 > --- > rtems/config/tools/rtems-kernel-6.cfg | 6 +- > rtems/config/tools/rtems-kernel-common.cfg | 91 +-- > source-builder/sb/options.py | 136 > +++-- > 3 files changed, 119 inse

[PATCH] spec/libdebugger: Only enable for supported architectures

2021-10-20 Thread chrisj
From: Chris Johns --- spec/build/cpukit/libdebugger.yml | 5 - spec/build/testsuites/libtests/debugger01.yml | 4 +--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/spec/build/cpukit/libdebugger.yml b/spec/build/cpukit/libdebugger.yml index f316cc18e8..4e689044e

Re: [PATCH 3/4] rtemsbsd/nfsclient: Fix the error code return value

2021-10-20 Thread Chris Johns
On 21/10/21 9:59 am, Joel Sherrill wrote: > On Wed, Oct 20, 2021, 12:49 AM Sebastian Huber > > > wrote: > On 20/10/2021 05:16, chr...@rtems.org wrote: > > +     errno = 0; > > +     return 0; > > I think setting

Re: [PATCH 3/4] rtemsbsd/nfsclient: Fix the error code return value

2021-10-20 Thread Joel Sherrill
On Wed, Oct 20, 2021, 12:49 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > > > On 20/10/2021 05:16, chr...@rtems.org wrote: > > + errno = 0; > > + return 0; > > I think setting errno if no error occurred is not allowed. > Right. Convention is that errno should not be to

Re: [PATCH 3/4] rtemsbsd/nfsclient: Fix the error code return value

2021-10-20 Thread Chris Johns
On 20/10/21 4:49 pm, Sebastian Huber wrote: > On 20/10/2021 05:16, chr...@rtems.org wrote: >> +    errno = 0; >> +    return 0; > > I think setting errno if no error occurred is not allowed. > I suspect you are right. Joel? Chris ___ devel mailing lis

[rtems-tools] tester: Update jobs configuration

2021-10-20 Thread Ryan Long
Allow for default_jobs and max_jobs to be specified in the BSP's configuration file. --- rtemstoolkit/options.py| 45 +- tester/rtems/testing/bsps/beagleboardxm.ini| 2 +- tester/rtems/testing/bsps/beagleboneblack.ini | 2 +- tester/rt

Re: [PATCH 4/4] Add support for Xilinx Versal APAC

2021-10-20 Thread Kinsey Moore
Looks good. On 10/19/2021 22:16, chr...@rtems.org wrote: From: Chris Johns --- libbsd.py | 1 + rtemsbsd/include/bsp/nexus-devices.h | 9 + .../include/machine/rtems-bsd-nexus-bus.h | 28 +++ rtemsbsd/sys/arm64/xilinx/versal_slcr.c

Re: [PATCH 1/4] rtemsbsd: Clear bus DMA memory a byte at a time

2021-10-20 Thread Kinsey Moore
Looks good. On 10/19/2021 22:16, chr...@rtems.org wrote: From: Chris Johns - memset may be optimized for performance and might work with device type memory. Clear a byte at a time. --- rtemsbsd/rtems/rtems-kernel-bus-dma.c | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) d

Re: [PATCH 2/4] waf: Move the tools/BSP include path to be last

2021-10-20 Thread Kinsey Moore
Thanks for this fix. It had been on my todo list for a while now. Kinsey On 10/19/2021 22:16, chr...@rtems.org wrote: From: Chris Johns - This change lets you rebuild libbsd after it is installed --- waf_libbsd.py | 29 + 1 file changed, 21 insertions(+), 8 del