Re: [PATCH rtems-central] spec: CONFIGURE_EXCEPTION_TO_SIGNAL_MAPPING
On 01/11/2021 20:37, Kinsey Moore wrote: --- spec/acfg/if/exception-to-signal-mapping.yml | 22 1 file changed, 22 insertions(+) create mode 100644 spec/acfg/if/exception-to-signal-mapping.yml Thanks for adding the specification item. This patch and the generated documentation look good. -- embedded brains GmbH Herr Sebastian HUBER Dornierstr. 4 82178 Puchheim Germany email: sebastian.hu...@embedded-brains.de phone: +49-89-18 94 741 - 16 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München Registernummer: HRB 157899 Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler Unsere Datenschutzerklärung finden Sie hier: https://embedded-brains.de/datenschutzerklaerung/ ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel
Re: [PATCH rtems-docs] cpu-supplement: Update AArch64 SMP details
On 01/11/2021 19:54, Kinsey Moore wrote: AArch64 now supports SMP for the Xilinx ZynqMP BSP family. Ok. -- embedded brains GmbH Herr Sebastian HUBER Dornierstr. 4 82178 Puchheim Germany email: sebastian.hu...@embedded-brains.de phone: +49-89-18 94 741 - 16 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München Registernummer: HRB 157899 Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler Unsere Datenschutzerklärung finden Sie hier: https://embedded-brains.de/datenschutzerklaerung/ ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel
RE: [PATCH RSB v2] rtems-kernel: Implement kernel recipe using waf
-Original Message- From: Chris Johns Sent: Tuesday, November 2, 2021 5:14 PM To: Ryan Long ; devel@rtems.org Subject: Re: [PATCH RSB v2] rtems-kernel: Implement kernel recipe using waf On 3/11/21 4:13 am, Ryan Long wrote: > > -Original Message- > From: Chris Johns > Sent: Monday, November 1, 2021 8:48 PM > To: Ryan Long ; devel@rtems.org > Subject: Re: [PATCH RSB v2] rtems-kernel: Implement kernel recipe > using waf On 28/10/21 2:09 am, Ryan Long wrote: >> + %define rtems_bsp >> + %(%{_topdir}/../source-builder/rtems-kernel-config-check -b >> + %{with_rtems_bsp_config}) > > How are config file errors handled? I normally return `ERROR` or something > that can be checked. > [Ryan Long] Right now the script is handling all the errors. I'll add some > error checking to rtems-kernel-common.cfg. And if the helper script finds and error what happens to the RSB build? [Ryan Long] The build fails when an error is found on in the INI file by the helper script. The error is printed out, so does error checking still need to be added to rtems-kernel-common.cfg? Chris ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel
Re: [PATCH] fix memory leak within calloc.c libtests
Pushed. I tinkered with the commit message a bit. --joel On Tue, Nov 2, 2021 at 1:00 PM Joel Sherrill wrote: > > This looks good to me. > > --joel > > On Mon, Nov 1, 2021 at 8:18 PM zack leung wrote: > > > > bump > > > > > > On Mon, 18 Oct 2021 at 23:46, zack leung wrote: > > > > > fix came from github code inspector, flagged by one of the analysis that > > > was done > > > --- > > > testsuites/libtests/POSIX/calloc.c | 4 +++- > > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > > > diff --git a/testsuites/libtests/POSIX/calloc.c > > > b/testsuites/libtests/POSIX/calloc.c > > > index bd04faa800..a7537c8cc4 100644 > > > --- a/testsuites/libtests/POSIX/calloc.c > > > +++ b/testsuites/libtests/POSIX/calloc.c > > > @@ -16,6 +16,8 @@ int > > > main (void) > > > { > > >void *foo = calloc (42, 43); > > > + int rc = (foo != NULL); > > > + free(foo); > > > > > > - return (foo != NULL); > > > + return rc; > > > } > > > -- > > > 2.33.0 > > > > > ___ > > devel mailing list > > devel@rtems.org > > http://lists.rtems.org/mailman/listinfo/devel ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel
Re: [PATCH RSB v2] rtems-kernel: Implement kernel recipe using waf
On 4/11/21 12:37 am, Ryan Long wrote: > -Original Message- > From: Chris Johns > Sent: Tuesday, November 2, 2021 5:14 PM > To: Ryan Long ; devel@rtems.org > Subject: Re: [PATCH RSB v2] rtems-kernel: Implement kernel recipe using waf > > On 3/11/21 4:13 am, Ryan Long wrote: >> >> -Original Message- >> From: Chris Johns >> Sent: Monday, November 1, 2021 8:48 PM >> To: Ryan Long ; devel@rtems.org >> Subject: Re: [PATCH RSB v2] rtems-kernel: Implement kernel recipe >> using waf On 28/10/21 2:09 am, Ryan Long wrote: >>> + %define rtems_bsp >>> + %(%{_topdir}/../source-builder/rtems-kernel-config-check -b >>> + %{with_rtems_bsp_config}) >> >> How are config file errors handled? I normally return `ERROR` or something >> that can be checked. >> [Ryan Long] Right now the script is handling all the errors. I'll add some >> error checking to rtems-kernel-common.cfg. > > And if the helper script finds and error what happens to the RSB build? > [Ryan Long] The build fails when an error is found on in the INI file by the > helper script. The error is printed out, so does error checking still need to > be added to rtems-kernel-common.cfg? This founds fine to me. I was just checking this is being handled. Thanks Chris ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel