Re: [PATCH rtems 00/12] bsp/imxrt: Update SDK and prepare for new variant

2023-05-05 Thread Gedare Bloom
On Fri, May 5, 2023 at 9:02 AM wrote: > > Hello Gedare, > > thanks for taking a look at the patch set. > > Am 05.05.23 um 15:56 schrieb Gedare Bloom: > > On Thu, May 4, 2023 at 9:01 AM Christian Mauderer > > wrote: > >> > >> Hello, > >> > >> this patch set for the arm/imxrt BSP family updates

Re: [PATCH rtems 00/12] bsp/imxrt: Update SDK and prepare for new variant

2023-05-05 Thread oss
Hello Gedare, thanks for taking a look at the patch set. Am 05.05.23 um 15:56 schrieb Gedare Bloom: On Thu, May 4, 2023 at 9:01 AM Christian Mauderer wrote: Hello, this patch set for the arm/imxrt BSP family updates the SDK files to the latest version of the mcux-sdk from NXP and prepares

Re: [PATCH rtems 00/12] bsp/imxrt: Update SDK and prepare for new variant

2023-05-05 Thread Sebastian Huber
On 05.05.23 15:56, Gedare Bloom wrote: Thanks, I think this is fine. The increase in the number of HAL/SDK that we have to import is starting to concern me in general. I wonder if there is a better way to manage these external sources. Yes, I have the same concern. We need a better way to work

[rtems-source-builder] devel/qemu-xilinx: Fix source URL

2023-05-05 Thread Alex White
The source URL for Xilinx QEMU appears to have been incorrect from the start. Since we are cloning a git repository, we should use 'git://'. --- bare/config/devel/qemu-xilinx-v2020.2-1.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH 00/12] Update documentation of specification items

2023-05-05 Thread Gedare Bloom
these look ok. I'll leave the register one for Chris to comment. On Fri, May 5, 2023 at 2:46 AM Sebastian Huber wrote: > > Sebastian Huber (12): > eng: Rework performance meansurement items > eng: Generalize external references > eng: Add conditional build dependencies > eng: Use type

Re: Update zlib to version 1.2.13

2023-05-05 Thread Gedare Bloom
Can you please add the upstream source link in the commit message before pushing? I don't recall if we have an accepted "standard" practice for doing this, but we should aim to. On Fri, May 5, 2023 at 7:58 AM Gedare Bloom wrote: > > ok. thanks for making it cleaner with the #ifdef rtems > > On

Re: Update zlib to version 1.2.13

2023-05-05 Thread Gedare Bloom
ok. thanks for making it cleaner with the #ifdef rtems On Fri, May 5, 2023 at 2:27 AM Sebastian Huber wrote: > > Hello, > > I would like to update zlib to version 1.2.13. The patch is to big for > the mailing list: > >

Re: [PATCH rtems 00/12] bsp/imxrt: Update SDK and prepare for new variant

2023-05-05 Thread Gedare Bloom
On Thu, May 4, 2023 at 9:01 AM Christian Mauderer wrote: > > Hello, > > this patch set for the arm/imxrt BSP family updates the SDK files to the > latest version of the mcux-sdk from NXP and prepares the BSP for further > chip variants. I plan to add a BSP that uses the IMXRT1166 soon. > > As a

Re: [PATCH 2/5] build: Use CSafeLoader if available

2023-05-05 Thread Sebastian Huber
On 05.05.23 01:38, Chris Johns wrote: When I install it through pip, I get the CSafeLoader on my machine. I don't have a libyaml development package installed. This is what I was not understanding. If it can be loaded in a python.org install on a N2 MacOS with a virtual env then I think we are

[PATCH v3] eng: Add register block specification types

2023-05-05 Thread Sebastian Huber
A register block may be used to specify the interface of devices which contain registers associated with an integer address. Register blocks consist of register block members specified by the ``definition`` attribute. Register block members are either instances of registers specified by the

[PATCH 09/12] eng: Add proxy item type

2023-05-05 Thread Sebastian Huber
Update #3715. --- eng/req/items.rst | 29 + 1 file changed, 29 insertions(+) diff --git a/eng/req/items.rst b/eng/req/items.rst index e51072b..ce6a435 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -99,6 +99,8 @@ The specification item types have the

[PATCH 11/12] eng: Add an item type for not defined defines

2023-05-05 Thread Sebastian Huber
This helps to deduce that a missing define in the software design is intended. Update #3715. --- eng/req/items.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/req/items.rst b/eng/req/items.rst index 874ddce..6ff7dee 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -1938,6

[PATCH 10/12] eng: Remove ambiguous interface types

2023-05-05 Thread Sebastian Huber
Use an item proxy instead. Update #3715. --- eng/req/items.rst | 6 -- 1 file changed, 6 deletions(-) diff --git a/eng/req/items.rst b/eng/req/items.rst index ce6a435..874ddce 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -1540,9 +1540,6 @@ This type refines the following types:

[PATCH 12/12] eng: Make design group identifiers optional

2023-05-05 Thread Sebastian Huber
Update #3715. --- eng/req/items.rst | 22 +++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/eng/req/items.rst b/eng/req/items.rst index 6ff7dee..783800f 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -1992,7 +1992,8 @@ software source code. All

[PATCH 06/12] eng: Update application configuration how-to

2023-05-05 Thread Sebastian Huber
Change paths to be in line with the actual specification. Fix group membership link role. Update #3715. --- eng/req/howto.rst | 54 --- eng/req/items.rst | 2 -- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/eng/req/howto.rst

[PATCH 08/12] eng: Add design target item type

2023-05-05 Thread Sebastian Huber
Update #3715. --- eng/req/items.rst | 25 + 1 file changed, 25 insertions(+) diff --git a/eng/req/items.rst b/eng/req/items.rst index 34b04a5..e51072b 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -111,6 +111,8 @@ The specification item types have the

[PATCH 04/12] eng: Use type refinement for validation method

2023-05-05 Thread Sebastian Huber
Update #3715. --- eng/req/items.rst | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/eng/req/items.rst b/eng/req/items.rst index 61ba54d..c5f95b5 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -2180,8 +2180,9 @@ All explicit attributes shall be specified. The

[PATCH 07/12] eng: Remove obsolete type listing

2023-05-05 Thread Sebastian Huber
Update #3715. --- eng/req/items.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/eng/req/items.rst b/eng/req/items.rst index 4cf20a6..34b04a5 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -4584,8 +4584,6 @@ This type is used by the following types: *

[PATCH 01/12] eng: Rework performance meansurement items

2023-05-05 Thread Sebastian Huber
Use links to specify runtime performance limits in target-specific items. Clarify wording. Update #3715. --- eng/glossary.rst | 3 ++ eng/req/items.rst | 107 +++--- 2 files changed, 56 insertions(+), 54 deletions(-) diff --git a/eng/glossary.rst

[PATCH 05/12] eng: Add optional floating-point number type

2023-05-05 Thread Sebastian Huber
Update #3715. --- eng/req/items.rst | 11 +++ 1 file changed, 11 insertions(+) diff --git a/eng/req/items.rst b/eng/req/items.rst index c5f95b5..1b1d48f 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -4622,6 +4622,17 @@ This type is used by the following types: *

[PATCH 02/12] eng: Generalize external references

2023-05-05 Thread Sebastian Huber
Use a common subtype for external references of interfaces and requirements. Add specializations for document and file references. Update #3715. --- eng/req/items.rst | 178 ++ 1 file changed, 115 insertions(+), 63 deletions(-) diff --git

[PATCH 03/12] eng: Add conditional build dependencies

2023-05-05 Thread Sebastian Huber
Update #3715. --- eng/req/items.rst | 18 ++ 1 file changed, 18 insertions(+) diff --git a/eng/req/items.rst b/eng/req/items.rst index 6b2f91b..61ba54d 100644 --- a/eng/req/items.rst +++ b/eng/req/items.rst @@ -3037,6 +3037,20 @@ This type is used by the following types: *

[PATCH 00/12] Update documentation of specification items

2023-05-05 Thread Sebastian Huber
Sebastian Huber (12): eng: Rework performance meansurement items eng: Generalize external references eng: Add conditional build dependencies eng: Use type refinement for validation method eng: Add optional floating-point number type eng: Update application configuration how-to eng:

Update zlib to version 1.2.13

2023-05-05 Thread Sebastian Huber
Hello, I would like to update zlib to version 1.2.13. The patch is to big for the mailing list: https://github.com/sebhub/rtems/commit/30ae8218782f69fb37b3be40689167f6637b3cbe -- embedded brains GmbH Herr Sebastian HUBER Dornierstr. 4 82178 Puchheim Germany email: