Re: [PATCH v3] Add bsp_init hook.

2018-04-05 Thread Chris Johns
On 06/04/2018 16:54, Christian Mauderer wrote: > --- > rtems.py | 9 +++-- > 1 file changed, 7 insertions(+), 2 deletions(-) Pushed. Thank you. Chris ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

[PATCH v3] Add bsp_init hook.

2018-04-05 Thread Christian Mauderer
--- rtems.py | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/rtems.py b/rtems.py index be44edc..713066d 100644 --- a/rtems.py +++ b/rtems.py @@ -69,7 +69,7 @@ def options(opt): dest = 'show_commands', help = 'Print the commands a

Re: [PATCH v2] Add post-init hook.

2018-04-05 Thread Christian Mauderer
Just noted: I should have changed the commit message. Please take a look at V3 instead. ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

[PATCH v2] Add post-init hook.

2018-04-05 Thread Christian Mauderer
--- rtems.py | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/rtems.py b/rtems.py index be44edc..713066d 100644 --- a/rtems.py +++ b/rtems.py @@ -69,7 +69,7 @@ def options(opt): dest = 'show_commands', help = 'Print the commands a

Re: Patch for rtems_waf to support build configurations in libbsd

2018-04-05 Thread Chris Johns
On 05/04/2018 23:29, Christian Mauderer wrote: > > I now managed to build multiple configurations for libbsd. But I needed > the per-bsp-classes from the rtems_waf/rtems.py init function so that I > can derive further classes of them. So I added a hook to the init > function that is executed at th

Re: [PATCH] Add post-init hook.

2018-04-05 Thread Chris Johns
On 05/04/2018 23:29, Christian Mauderer wrote: > --- > rtems.py | 7 ++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/rtems.py b/rtems.py > index b2e3285..0882c74 100644 > --- a/rtems.py > +++ b/rtems.py > @@ -67,7 +67,7 @@ def options(opt): > dest = '

Re: sptests/splinkersets01

2018-04-05 Thread Chris Johns
On 05/04/2018 22:47, Sebastian Huber wrote: > On 05/04/18 14:39, Chris Johns wrote: >> Hi, >> >> Is there suppose to be a library created and then linked to the test? >> >> If so what purpose is it performing? > > It tests the normal use case of the linker sets. The sets and items are part > of >

Recent Link Failure for qemuprep-altivec

2018-04-05 Thread Joel Sherrill
Hi My build of all BSP configurations reported these failures: Failures Report === 1 smp powerpc/qemuprep-altivec build: configure: /home/joel/rtems-work/rtems/configure --target=powerpc-\ rtems5 --enable-rtemsbsp=qemuprep-altivec --prefix=/home/joel/rtems-\ work/

Re: error while running rtems-test with coverage

2018-04-05 Thread Vijay Kumar Banerjee
I tried to solve the empty get in the way shown in the patch , but it doesn't seems to work, I'm getting the following error now RTEMS Testing - Tester, 5 (1ed6e2e64090) Traceback (most recent call last): File "/home/lunatic/development/rtems/rtems-tools/tester/rtems-test", line 40, in rt.t

[PATCH] Add post-init hook.

2018-04-05 Thread Christian Mauderer
--- rtems.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rtems.py b/rtems.py index b2e3285..0882c74 100644 --- a/rtems.py +++ b/rtems.py @@ -67,7 +67,7 @@ def options(opt): dest = 'show_commands', help = 'Print the commands as s

Patch for rtems_waf to support build configurations in libbsd

2018-04-05 Thread Christian Mauderer
Hello Chris, I now managed to build multiple configurations for libbsd. But I needed the per-bsp-classes from the rtems_waf/rtems.py init function so that I can derive further classes of them. So I added a hook to the init function that is executed at the end. If you want to know where I needed t

Re: sptests/splinkersets01

2018-04-05 Thread Sebastian Huber
On 05/04/18 14:39, Chris Johns wrote: Hi, Is there suppose to be a library created and then linked to the test? If so what purpose is it performing? It tests the normal use case of the linker sets. The sets and items are part of a library. -- Sebastian Huber, embedded brains GmbH Address

sptests/splinkersets01

2018-04-05 Thread Chris Johns
Hi, Is there suppose to be a library created and then linked to the test? If so what purpose is it performing? Chris ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: [PATCH v2 1/2] waf: Support building from libbsd.py directly from waf.

2018-04-05 Thread Christian Mauderer
Am 04.04.2018 um 07:28 schrieb Chris Johns: > This is one way, another below which I think will be easier and better. > > The build system handles builds for a range of arch/bsp pairs here: > > https://git.rtems.org/chrisj/rtems_waf.git/tree/rtems.py#n182 > > I would play with the `bsp_configure