Re: [PATCH 01/02] USB driver bcm283x_dwcotg added.

2016-08-08 Thread Thomas Kim
Dear Sir, I am sorry. I want to test this libbsd version for Rasberry Pi. When I check "git://git.rtems.org/rtems-libbsd.git", there is not any code for Rasberry pi. Please could you let me know git URL for downloading this libbsd version ? Best Regards, Thomas Kim 2016-08-09 14:52 GMT+09:00 S

Re: [PATCH 01/02] USB driver bcm283x_dwcotg added.

2016-08-08 Thread Sebastian Huber
From which FreeBSD version are these files? On 05/08/16 18:32, Deval Shah wrote: --- freebsd/sys/arm/broadcom/bcm2835/bcm283x_dwc_fdt.c | 127 freebsd/sys/dev/usb/controller/dwc_otg_fdt.c | 228 + freebsd/sys/dev/usb/controller/dwc_otg_fdt.h | 39

Re: [PATCH 01/02] USB driver bcm283x_dwcotg added.

2016-08-08 Thread Sebastian Huber
On 08/08/16 20:16, Deval Shah wrote: I followed the same guidelines while adding the drivers. Could you point out the things I might have missed ? Yes, sorry, the link below was incomplete. Use this one: https://git.rtems.org/rtems-libbsd/tree/libbsd.txt#n736 In particular: "|Immediately che

Re: librtems++ examples

2016-08-08 Thread Chris Johns
On 09/08/2016 00:57, Boughedada Kamal wrote: I found librtems++ wrapper for the RTEMS API on the net. But I don't know how to use it. Is it possible to get examples about the c++ usage of rtems Please do not use it. I am about to remove it from RTEMS. The standards base C++ support should b

Re: [PATCH 01/02] USB driver bcm283x_dwcotg added.

2016-08-08 Thread Deval Shah
I followed the same guidelines while adding the drivers. Could you point out the things I might have missed ? Thank you. Deval Shah ᐧ On Mon, Aug 8, 2016 at 10:58 AM, Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > Hello Deval, > > please follow the rules for importing FreeBSD in

Re: Error in initializing network parameters

2016-08-08 Thread Deval Shah
I ran both the dhcpcd examples. The boot logs are below. I am seeing the same problem in these two examples too. Test program tries to get the network interfaces but it is not found since the USB initialization is still left. *** LIBBSD DHCPCD 1 TEST *** RTEMS Shell on /dev/console. Use 'help' t

librtems++ examples

2016-08-08 Thread Boughedada Kamal
Hello, I found librtems++ wrapper for the RTEMS API on the net. But I don't know how to use it. Is it possible to get examples about the c++ usage of rtems Thanks in advance. Best regards K. Boughedada ___ devel mailing list devel@rtems.org http://l

Re: [PATCH]doc:source-builder.txt:Typographical errors

2016-08-08 Thread Gedare Bloom
This email did not come through right. Did you use git-send-email? On Sat, Aug 6, 2016 at 7:23 AM, Sambeet Panigrahi wrote: > From 137ed5e54a06738752d18982fcab9d90070e58cc Mon Sep 17 00:00:00 2001 > From: Sambeet Panigrahi > Date: Sat, 6 Aug 2016 14:28:11 +0530 > Subject: [PATCH] Typo in rsb doc

Re: Add FreeBSD PF Firewall to libbsd

2016-08-08 Thread Christian Mauderer
Am 03.08.2016 um 02:54 schrieb Chris Johns: >> - The PF modules can now be linked by using the SYSINIT_NEED_FIREWALL_PF >> and SYSINIT_NEED_FIREWALL_PFLOG configuration macros. > > Can you please add RTEMS_BSD_CONFIG_FIREWALL_PF and > RTEMS_BSD_CONFIG_FIREWALL_PFLOG to rtems-bsd-config.h. > > Thi

Re: Add RTEMS_BSD_CONFIG_xxx and rc.conf interface for PF

2016-08-08 Thread Christian Mauderer
Sorry: I forgot to add "libbsd" to the subject. The patches are intended for the libbsd. Am 08.08.2016 um 16:32 schrieb Christian Mauderer: > The appended patch set adds > > - RTEMS_BSD_CONFIG_FIREWALL_PF > - RTEMS_BSD_CONFIG_FIREWALL_PFLOG > - RTEMS_BSD_CONFIG_FIREWALL_PFSYNC > > for enablin

[PATCH 4/5] pf: Improve documentation regarding stack.

2016-08-08 Thread Christian Mauderer
From: Christian Mauderer --- libbsd.txt | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libbsd.txt b/libbsd.txt index 60a1b55..5d8c174 100644 --- a/libbsd.txt +++ b/libbsd.txt @@ -1347,8 +1347,10 @@ The following is necessary to use PF on RTEMS: - Create a rule file (n

[PATCH 2/5] testsuite/pf01: Remove pflog-module from test.

2016-08-08 Thread Christian Mauderer
From: Christian Mauderer This module is not tested inside the pf01 test. Therefore remove it. It is still build in the interactive pf02 test. --- testsuite/pf01/test_main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/testsuite/pf01/test_main.c b/testsuite/pf01/test_main.c index 6d9f563..4

Add RTEMS_BSD_CONFIG_xxx and rc.conf interface for PF

2016-08-08 Thread Christian Mauderer
The appended patch set adds - RTEMS_BSD_CONFIG_FIREWALL_PF - RTEMS_BSD_CONFIG_FIREWALL_PFLOG - RTEMS_BSD_CONFIG_FIREWALL_PFSYNC for enabling the PF firewall. Further it adds an rc.conf interface that mimics the one in FreeBSD. It handles the following directives: - pf_enable - pf_rules - p

[PATCH 1/5] pf: Add RTEMS_BSD_CONFIG_FIREWALL_xxx options.

2016-08-08 Thread Christian Mauderer
From: Christian Mauderer --- rtemsbsd/include/machine/rtems-bsd-config.h | 28 testsuite/pf01/test_main.c | 4 ++-- testsuite/pf02/test_main.c | 4 ++-- 3 files changed, 32 insertions(+), 4 deletions(-) diff --git a/rtemsbsd/inclu

[PATCH 3/5] rc.conf: Use more stack for the rc worker.

2016-08-08 Thread Christian Mauderer
From: Christian Mauderer Most of the tests run with a default stack size of 32k. If the rc worker runs with less, it uses an untested configuration. --- rtemsbsd/rtems/rtems-bsd-rc-conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtemsbsd/rtems/rtems-bsd-rc-conf.c b/rt

Re: mx6ulevk BSP was: Re: [PATCH] arm: mx6ulevk: Initial BSP support for i.MX 6UltraLite EVK board.

2016-08-08 Thread Peng Fan
Hi Thomas, 2016-08-01 20:15 GMT+08:00 Thomas Doerfler < thomas.doerf...@embedded-brains.de>: > Hi, > > just out of curiosity (and because I might need a i.MX6 BSP for an > upcoming project): > > What is the current state of the BSP? What are the plans for the near > future? > Sorry for late repl