Re: rtems-docs.git cross-linked documents

2020-12-08 Thread Chris Johns
On 9/12/20 4:49 pm, Sebastian Huber wrote: > On 09/12/2020 02:19, Chris Johns wrote: > >> I have discovered a growing number of cross-links in the documentation... >> >> $ grep -r 'branches/master' . | wc -l >>    42 > > Independent of the general issue with the cross-links, the growing numbe

Re: rtems-docs.git cross-linked documents

2020-12-08 Thread Sebastian Huber
On 09/12/2020 02:19, Chris Johns wrote: I have discovered a growing number of cross-links in the documentation... $ grep -r 'branches/master' . | wc -l 42 Independent of the general issue with the cross-links, the growing number is  due to the automatically generated header. For examp

rtems-docs.git cross-linked documents

2020-12-08 Thread Chris Johns
Hello, I have discovered a growing number of cross-links in the documentation... $ grep -r 'branches/master' . | wc -l 42 We cannot cleanly support cross-referencing documents via href links and referencing master like this is wrong. HTML might be workable if someone is willing to invest t

[PATCH] Add patch to newlib for devctl.h to compile with C++

2020-12-08 Thread Joel Sherrill
Closes #4174. --- rtems/config/tools/rtems-gcc-7.5.0-newlib-7947581.cfg | 4 1 file changed, 4 insertions(+) diff --git a/rtems/config/tools/rtems-gcc-7.5.0-newlib-7947581.cfg b/rtems/config/tools/rtems-gcc-7.5.0-newlib-7947581.cfg index cf62d2f..b02ced3 100644 --- a/rtems/config/tools/rtem

Re: [PATCH v2 1/1] tester: Add yaml format to the supported report formats

2020-12-08 Thread Cláudio Maia
Hi Cris, On 07/12/20 23:02, Chris Johns wrote: > Hi, > > I am sorry about the slow response, I have been side tracked onto other > things. No problem with that. > On 4/12/20 3:41 am, cl...@isep.ipp.pt wrote: >> From: Cláudio Maia >> >> --- >> tester/rt/test.py | 115

[PATCH 1/2] cpukit/aarch64: Use hex consistently for offsets

2020-12-08 Thread Kinsey Moore
--- .../cpu/aarch64/aarch64-context-validate.S| 40 +++--- .../cpu/aarch64/aarch64-exception-default.S | 38 +++--- .../cpu/aarch64/aarch64-exception-interrupt.S | 116 +- cpukit/score/cpu/aarch64/cpu_asm.S| 12 +- .../cpu/aarch64/include/rtems/score/cpu.h

[PATCH 2/2] cpukit/aarch64: Add explanation of exception flow

2020-12-08 Thread Kinsey Moore
--- .../cpu/aarch64/aarch64-exception-default.S | 17 - .../cpu/aarch64/aarch64-exception-interrupt.S | 4 ++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/cpukit/score/cpu/aarch64/aarch64-exception-default.S b/cpukit/score/cpu/aarch64/aarch64-exception-

Fwd: New Defects reported by Coverity Scan for RTEMS

2020-12-08 Thread Gedare Bloom
Hi all, I get a text report on new defects from Coverity. I don't know how I managed to sign up for it, and I'm not sure I can get it sent to any list automatically, but here is the current updated new defects. Just looks like two new ones related to static assertions. -- Forwarded messag

[PATCH v3 1/1] tester: Add yaml format to the supported report formats

2020-12-08 Thread clrrm
From: Cláudio Maia --- tester/rt/test.py | 116 +- 1 file changed, 114 insertions(+), 2 deletions(-) diff --git a/tester/rt/test.py b/tester/rt/test.py index 9b157e9..66f1756 100644 --- a/tester/rt/test.py +++ b/tester/rt/test.py @@ -339,9 +339,115 @@

[PATCH v3 0/1] Add yaml format to the supported report formats

2020-12-08 Thread clrrm
From: Cláudio Maia Two output formats were supported by RTEMS Tester: json and junit. This patch adds yaml to the list of supported formats. The information being stored in the output file is the same as the one being stored for the other formats, with the addition of adding a few more executio

Re: [PATCH v2 1/1] tester: Add yaml format to the supported report formats

2020-12-08 Thread Chris Johns
Hi, I am sorry about the slow response, I have been side tracked onto other things. On 4/12/20 3:41 am, cl...@isep.ipp.pt wrote: > From: Cláudio Maia > > --- > tester/rt/test.py | 115 +- > 1 file changed, 113 insertions(+), 2 deletions(-) > > diff

Re: Report on failing tests with thread stack protection and their resolution.

2020-12-08 Thread Utkarsh Rai
On Thu, Dec 3, 2020 at 10:22 PM Gedare Bloom wrote: > > > On Wed, Dec 2, 2020 at 5:53 PM Utkarsh Rai > wrote: > >> Hello, >> As discussed in this >> thread, >> I have compiled a list of the tests that deal with inter stack >> co

[PATCH 3/3] user: Add aarch64/xilinx-zynqmp

2020-12-08 Thread Kinsey Moore
--- user/bsps/aarch64/xilinx-zynqmp.rst | 34 + user/bsps/bsps-aarch64.rst | 1 + 2 files changed, 35 insertions(+) create mode 100644 user/bsps/aarch64/xilinx-zynqmp.rst diff --git a/user/bsps/aarch64/xilinx-zynqmp.rst b/user/bsps/aarch64/xilinx-zynqmp.rst

Re: Which threads execute _Thread_Handler ?

2020-12-08 Thread Sebastian Huber
On 05/12/2020 07:13, Richi Dubey wrote: The stack trace for the thread looks like this: Tasks (entry function) -> rtems_task_wake_after ->_Thread_Dispatch_direct -> _Thread_Do_dispatch (where the _Context_switch function call lies), how can then the heir thread start executing from the _Thr

[PATCH 1/3] aarch64: Update interrupt details

2020-12-08 Thread Kinsey Moore
--- cpu-supplement/aarch64.rst | 5 - user/bsps/aarch64/a53.rst | 5 +++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/cpu-supplement/aarch64.rst b/cpu-supplement/aarch64.rst index 9e74d6b..a102817 100644 --- a/cpu-supplement/aarch64.rst +++ b/cpu-supplement/aarch64.rst @@

[PATCH 2/3] user: Add A53 Qemu run instructions

2020-12-08 Thread Kinsey Moore
--- user/bsps/aarch64/a53.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/user/bsps/aarch64/a53.rst b/user/bsps/aarch64/a53.rst index 73735b1..e3a89f8 100644 --- a/user/bsps/aarch64/a53.rst +++ b/user/bsps/aarch64/a53.rst @@ -25,3 +25,10 @@ Console Driver -- The cons

[PATCH] tester: Add configs for AArch64 ZynqMP BSPs

2020-12-08 Thread Kinsey Moore
--- .../testing/bsps/xilinx_zynqmp_ilp32.ini | 38 +++ .../rtems/testing/bsps/xilinx_zynqmp_lp64.ini | 38 +++ 2 files changed, 76 insertions(+) create mode 100644 tester/rtems/testing/bsps/xilinx_zynqmp_ilp32.ini create mode 100644 tester/rtems/testing/bsps/