Re: suppressing DHCP messages

2021-07-19 Thread Siddons, David
...sorry, that file is an EPICS file. Talking to two lists simultaneously is confusing! Pete. From: Siddons, David Sent: Monday, July 19, 2021 3:26 PM To: Christian Mauderer ; Heinz Junkes Cc: rtems-us...@rtems.org Subject: Re: suppressing DHCP messages Hi C

Re: suppressing DHCP messages

2021-07-19 Thread Siddons, David
Hi Christian, Turns out that was left-over test code in rtems_init.c. I commented them out and all is now well. I believe the latest version has them removed. Pete. From: Christian Mauderer Sent: Monday, July 19, 2021 3:22 PM To: Siddons, David ; Heinz Junkes

Re: Building a library for use with RTEMS via CMake

2021-07-19 Thread Michael Davidsaver
On 7/19/21 6:17 AM, andre.nahrw...@dlr.de wrote: > Hello, > > I have built RTEMS 5 and its tools for the Xilinx Zynq Zedboard and installed > the BSP and tools at a certain position on my machine. > The tools are added to the PATH variable and RTEMS_BSPS is also available in > the environment. >

Re: suppressing DHCP messages

2021-07-19 Thread Siddons, David
Hi Heinz, That statement is in there, in my setup at line 997, but I still get this every few minutes: * Primary Network interface : cpsw0 * all out ---> interface = cpsw0 all out ---> reason = RENEW all out ---> pid = 1 all out ---> ifmetric = 201 all out ---> ifwireless = 0 all out --

suppressing DHCP messages

2021-07-19 Thread Siddons, David
My application uses dhcp, and the system issues a screenfull of messages every time the lease is renewed. Is there a way to stop that? Pete. ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: suppressing DHCP messages

2021-07-19 Thread Christian Mauderer
Hello Pete, not entirely sure how EPICS initializes dhcpcd. But I would expect that your application creates a /dev/dhcpcd.conf somewhere. You can add the "quiet" option to that file: https://www.freebsd.org/cgi/man.cgi?query=dhcpcd.conf&apropos=0&sektion=0&manpath=FreeBSD+13.0-RELEASE+and+Po

Re: suppressing DHCP messages

2021-07-19 Thread Heinz Junkes
FYI, Pete is a EPICS - User… Hello Pete, in modules/libcom/RTEMS/posix/rtems_init.c in line 1008 (before sc = rtems_bsd_initialize();) there is a / should be a line with rtems_bsd_set_vprintf_handler(rtems_bsd_vprintf_handler_mute); That should suppress all output from the network intitialization

Re: Building a library for use with RTEMS via CMake

2021-07-19 Thread Joel Sherrill
On Mon, Jul 19, 2021 at 8:17 AM wrote: > > Hello, > > I have built RTEMS 5 and its tools for the Xilinx Zynq Zedboard and installed > the BSP and tools at a certain position on my machine. > The tools are added to the PATH variable and RTEMS_BSPS is also available in > the environment. > > Now w

Building a library for use with RTEMS via CMake

2021-07-19 Thread Andre.Nahrwold
Hello, I have built RTEMS 5 and its tools for the Xilinx Zynq Zedboard and installed the BSP and tools at a certain position on my machine. The tools are added to the PATH variable and RTEMS_BSPS is also available in the environment. Now we need to build a library for the use with RTEMS via CMa