Re: [RTEMS Tools 0/1] trace/wscript: Improve C++ standard selection

2024-01-24 Thread Chris Johns
On 25/1/2024 12:33 am, Sebastian Huber wrote: > - Am 24. Jan 2024 um 0:55 schrieb Chris Johns chr...@rtems.org: > >> On 23/1/2024 5:55 pm, Sebastian Huber wrote: >>> - Am 22. Jan 2024 um 22:56 schrieb Chris Johns chr...@rtems.org: > [...] >>> The usage of LLVM for the RTEMS Tools is

[PATCH] cpukit/libblock: Ignore sync status prior to purge

2024-01-24 Thread Kinsey Moore
--- cpukit/libblock/src/bdbuf.c | 2 +- cpukit/libblock/src/blkdev-imfs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpukit/libblock/src/bdbuf.c b/cpukit/libblock/src/bdbuf.c index ee98ada85f..ee6f1d9347 100644 --- a/cpukit/libblock/src/bdbuf.c +++

[PATCH] cpukit/libblock: Ignore error notify return value

2024-01-24 Thread Kinsey Moore
This is already in the error path. --- cpukit/libblock/src/media.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/libblock/src/media.c b/cpukit/libblock/src/media.c index 1ab7dd2034..cc6bb70f91 100644 --- a/cpukit/libblock/src/media.c +++ b/cpukit/libblock/src/media.c

[PATCH rtems-central] spec/cache/coherent: Add return value for add area

2024-01-24 Thread Kinsey Moore
This changes the return type for rtems_cache_coherent_add_area from void to rtems_status_code so that the function can report errors when they occur. --- spec/rtems/cache/if/coherent-add-area.yml | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git

[PATCH] cpukit/cache: Report coherent add area failures

2024-01-24 Thread Kinsey Moore
This alters the API for rtems_cache_coherent_add_area to allow reporting of failures that can occur during the process of adding a new area to the coherent cache heap. --- cpukit/include/rtems/rtems/cache.h | 12 - cpukit/libcsupport/src/cachecoherentalloc.c | 27

Re: Xilinx QSPI Flash Patches

2024-01-24 Thread Kinsey Moore
Patches 1 and 3 look good. I need to spend more time reviewing patch 2 than I have right at this moment. Kinsey On Tue, Jan 23, 2024 at 11:22 PM wrote: > Hi All, > > Attached are V2 of the patches that adds a wrapper around Xilinx's$ > XQspiPsu flash driver to rtems_flashdev. This has been

Re: [RTEMS Tools 0/1] trace/wscript: Improve C++ standard selection

2024-01-24 Thread Sebastian Huber
- Am 24. Jan 2024 um 0:55 schrieb Chris Johns chr...@rtems.org: > On 23/1/2024 5:55 pm, Sebastian Huber wrote: >> - Am 22. Jan 2024 um 22:56 schrieb Chris Johns chr...@rtems.org: [...] >> The usage of LLVM for the RTEMS Tools is optional. You can build them without >> LLVM. However, this

[PATCH rtems6 v2] libmisc/shell: Fix timeout getting terminal size

2024-01-24 Thread dufault
From: Peter Dufault - Fix detection of timeout in rtems_shell_term_wait_for(). - Use the "termios" VTIME inter-character timeout. The previous version depends on the BSP clock tick and can be long. - Add debugging regarding terminal size sequences. Updates #4763 ---

Re: [PATCH rtems6 1/1] libmisc/shell: Fix timeout in getting terminal size

2024-01-24 Thread Peter Dufault
> On Jan 23, 2024, at 7:09 PM, Chris Johns wrote: > > On 23/1/2024 9:00 pm, Peter Dufault wrote: >>> On Jan 22, 2024, at 1:51 PM, Peter Dufault wrote: On Jan 22, 2024, at 12:16 PM, Gedare Bloom wrote: I have a couple minor notes below. More important, does this change