Re: [PATCH rtems-libbsd] if_xae: Fix non-FDT BSP build error

2022-03-09 Thread Sebastian Huber
On 09/03/2022 19:47, Alex White wrote: This fixes a compiler error that would occur for every BSP that does not define `BSP_FDT_IS_SUPPORTED`. The fdt headers should always be included to provide the needed definitions. Thanks, I checked it in. It would be good if you could fix the issue also

Re: [PATCH] spec/build/bsps: Fix blank variables

2022-03-09 Thread Sebastian Huber
On 09/03/2022 22:02, Ryan Long wrote: Several variables in the installed Makefile.inc, target.cfg, and bsp.cfg had values that were not being initialized to yes or no as they should be. What are "several variables"? Reordering the files and adding an initialization using yesno() to RTEMS_HAS

Re: [PATCH] spec/build/bsps: Fix blank variables

2022-03-09 Thread Chris Johns
On 10/3/2022 9:43 am, Joel Sherrill wrote: > On Wed, Mar 9, 2022 at 4:24 PM Heinz Junkes > wrote: > >> Thanks for that. I've been struggling with this for a while ;-) >> >> But there is this comment in the file: >> “ >> # >> # BSP specific settings. To be included in application Makefiles >> # >>

Re: [PATCH] spec/build/bsps: Fix blank variables

2022-03-09 Thread Joel Sherrill
On Wed, Mar 9, 2022 at 4:24 PM Heinz Junkes wrote: > Thanks for that. I've been struggling with this for a while ;-) > > But there is this comment in the file: > “ > # > # BSP specific settings. To be included in application Makefiles > # > # This support will be removed from RTEMS. Please consid

Re: [PATCH] spec/build/bsps: Fix blank variables

2022-03-09 Thread Heinz Junkes
Thanks for that. I've been struggling with this for a while ;-) But there is this comment in the file: “ # # BSP specific settings. To be included in application Makefiles # # This support will be removed from RTEMS. Please consider other # ways to build applications. # “ I thought this was no lon

Newer GCC Function Attributes

2022-03-09 Thread Joel Sherrill
Hi It looks like GCC has gotten some pretty nifty attributes for arguments and return values. https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html You can specify allowed access mode for non-const pointers abd lignment hints for returned pointers. I'm not sure if we have any good

[PATCH] spec/build/bsps: Fix blank variables

2022-03-09 Thread Ryan Long
Several variables in the installed Makefile.inc, target.cfg, and bsp.cfg had values that were not being initialized to yes or no as they should be. Reordering the files and adding an initialization using yesno() to RTEMS_HAS_NETWORKING fixed this issue. --- spec/build/bsps/grpmake.yml | 8

RTEMS Accepted in Google Summer of Code 2022

2022-03-09 Thread Joel Sherrill
Hi I am pleased to be able to announce that the RTEMS Project has been accepted into the 2022 Edition of the Google Summer of Code ( https://summerofcode.withgoogle.com/). There are a few changes this year which everyone should be made aware of that are discussed at https://opensource.googleblog.

[PATCH rtems-libbsd] if_xae: Fix non-FDT BSP build error

2022-03-09 Thread Alex White
This fixes a compiler error that would occur for every BSP that does not define `BSP_FDT_IS_SUPPORTED`. The fdt headers should always be included to provide the needed definitions. --- freebsd/sys/dev/xilinx/axidma.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/freebsd/sys/dev/xilinx/

Re: hello world with devfs has no output

2022-03-09 Thread Ryan Long
On 3/7/2022 10:33 AM, Sebastian Huber wrote: On 07/03/2022 16:18, Joel Sherrill wrote: On Mon, Mar 7, 2022 at 12:46 AM Sebastian Huber > wrote:     On 03/03/2022 00:06, Joel Sherrill wrote: > What's the missing capability now in devfs? This u

Re: [rtems-libbsd commit] if_xae: Port to RTEMS

2022-03-09 Thread Sebastian Huber
On 09/03/2022 16:11, Sebastian Huber wrote: On 07/03/2022 23:54, Joel Sherrill wrote: Module:    rtems-libbsd Branch:    6-freebsd-12 Commit:    40b9c6ce6343cea5ca51ca9831d381886583a508 Changeset: http://git.rtems.org/rtems-libbsd/commit/?id=40b9c6ce6343cea5ca51ca9831d381886583a508 Author: 

Re: [rtems-libbsd commit] if_xae: Port to RTEMS

2022-03-09 Thread Sebastian Huber
On 07/03/2022 23:54, Joel Sherrill wrote: Module:rtems-libbsd Branch:6-freebsd-12 Commit:40b9c6ce6343cea5ca51ca9831d381886583a508 Changeset: http://git.rtems.org/rtems-libbsd/commit/?id=40b9c6ce6343cea5ca51ca9831d381886583a508 Author:Alex White Date: Sun Feb 6 21:12:31 20

Re: AW: [PATCH 1/2] kern_ntptime.c: Import from FreeBSD

2022-03-09 Thread Sebastian Huber
On 09/03/2022 14:04, gabriel.moy...@dlr.de wrote: +#ifdef PPS_SYNC +SYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shiftmax, CTLFLAG_RW, +&pps_shiftmax, 0, "Max interval duration (sec) (shift)"); +SYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shift, CTLFLAG_RW, +&pps_shift, 0, "Interval duration (sec)

AW: [PATCH 1/2] kern_ntptime.c: Import from FreeBSD

2022-03-09 Thread Gabriel.Moyano
> +#ifdef PPS_SYNC > +SYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shiftmax, CTLFLAG_RW, > +&pps_shiftmax, 0, "Max interval duration (sec) (shift)"); > +SYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shift, CTLFLAG_RW, > +&pps_shift, 0, "Interval duration (sec) (shift)"); > +SYSCTL_LONG(_kern_ntp_pll,

Re: [PATCH] bsp/altera-cyclone-v: fix the creation of reserved memory regions

2022-03-09 Thread Sebastian Huber
On 09/03/2022 09:09, Marcus Ritter wrote: Hello Sebastian, the patch is attached. Thanks, I checked it in. -- 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 Reg

Re: [PATCH] bsp/altera-cyclone-v: fix the creation of reserved memory regions

2022-03-09 Thread Marcus Ritter
Hello Sebastian, the patch is attached. -- Mit freundlichen Grüßen / Best regards Marcus Ritter (M.Sc.) LSS GmbH Entwicklung / Development Warnemünder Str. 1 01109 Dresden GERMANY www.lss-lighting.de ___ devel mailing list devel@rtems.org http://list