[PATCH 1/4] capture: Move logging of task record to occur after filter check.

2014-11-04 Thread Jennifer Averett
The catpture task record is now logged just prior to the first log entry using that task instead of the first time the task is seen. This involved splitting the record task method into an initialize task and a record task. --- cpukit/libmisc/capture/capture.c| 39

[PATCH 2/4] capture: Add SMP support.

2014-11-04 Thread Jennifer Averett
To support smp data was broken into global and percpu capture data. Capture control must be disabled prior to printing or setting of watch points. Methods to print the data were moved from capture-cli into a support area and are no longer static so that they can be shared by test routines, or

Re: libdl: rtems.git dependence on rtems-tools.git

2014-11-04 Thread Joel Sherrill
On October 30, 2014 9:18:29 PM CDT, Gedare Bloom ged...@rtems.org wrote: On Thu, Oct 30, 2014 at 7:13 PM, Chris Johns chr...@rtems.org wrote: On 31/10/2014 6:42 am, Gedare Bloom wrote: On Thu, Oct 30, 2014 at 3:40 PM, Gedare Bloom ged...@rtems.org wrote: On Thu, Oct 30, 2014 at 3:32 PM,

Re: [PATCH 2/4] capture: Add SMP support.

2014-11-04 Thread Gedare Bloom
I was reviewing this code and lost my spot. There are some notes below, but I have no more time to weed through. I'd recommend splitting this patch into more pieces: 1) Moving code into capture_support. 2) Adding SMP support. 3) Fixing formatting/style/documentation issues in legacy portions.

Re: [PATCH] (2 commits squashed into one) Beagle BSP for review

2014-11-04 Thread Ben Gras
I just checked, it runs on the bbxm hardware too, not just the emulator. On Mon, Nov 3, 2014 at 1:20 PM, Ben Gras b...@shrike-systems.com wrote: All, Ok, as promised, I rebased and re-tested and have found included a portable way of making the SD card image (included in sdcard.sh), to be

RE: [PATCH 2/4] capture: Add SMP support.

2014-11-04 Thread Jennifer Averett
-Original Message- From: ged...@gwmail.gwu.edu [mailto:ged...@gwmail.gwu.edu] On Behalf Of Gedare Bloom Sent: Tuesday, November 04, 2014 10:16 AM To: Jennifer Averett Cc: rtems-de...@rtems.org Subject: Re: [PATCH 2/4] capture: Add SMP support. I was reviewing this code and lost

Re: RTEMS+LWIP for LPC1768 BSP

2014-11-04 Thread Marcos Díaz
Hi! We are currently using a LWIP implementation on the Beagle Bone Black bsp, recently uploaded by Ben Gras. We developed this port based on ethernet and lwip drivers from StarterWare drivers of Texas Instrument. We took this port, that was intended for baremetal use and added a posix

[PATCH 2/7] libdl/rtl-mdreloc-bfin.c: Include rtems/rtl/rtl.h not rtl.h

2014-11-04 Thread Joel Sherrill
--- cpukit/libdl/rtl-mdreloc-bfin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/libdl/rtl-mdreloc-bfin.c b/cpukit/libdl/rtl-mdreloc-bfin.c index 1c9fd5b..d855d30 100644 --- a/cpukit/libdl/rtl-mdreloc-bfin.c +++ b/cpukit/libdl/rtl-mdreloc-bfin.c @@ -1,7 +1,7 @@

[PATCH 6/7] lpc2362-testsuite.tcfg: Add dl01

2014-11-04 Thread Joel Sherrill
--- c/src/lib/libbsp/arm/lpc24xx/make/custom/lpc2362-testsuite.tcfg | 1 + 1 file changed, 1 insertion(+) diff --git a/c/src/lib/libbsp/arm/lpc24xx/make/custom/lpc2362-testsuite.tcfg b/c/src/lib/libbsp/arm/lpc24xx/make/custom/lpc2362-testsuite.tcfg index 46897d4..1559e3d 100644 ---

[PATCH 1/7] libdl/Makefile.am: Need preinstall on all targets

2014-11-04 Thread Joel Sherrill
--- cpukit/libdl/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpukit/libdl/Makefile.am b/cpukit/libdl/Makefile.am index 11f1478..5c3cd15 100644 --- a/cpukit/libdl/Makefile.am +++ b/cpukit/libdl/Makefile.am @@ -30,7 +30,7 @@ libdl_a_SOURCES = \

[PATCH 7/7] lpc23xx_tli800-testsuite.tcfg: Add dl01

2014-11-04 Thread Joel Sherrill
--- c/src/lib/libbsp/arm/lpc24xx/make/custom/lpc23xx_tli800-testsuite.tcfg | 1 + 1 file changed, 1 insertion(+) diff --git a/c/src/lib/libbsp/arm/lpc24xx/make/custom/lpc23xx_tli800-testsuite.tcfg b/c/src/lib/libbsp/arm/lpc24xx/make/custom/lpc23xx_tli800-testsuite.tcfg index b63ed50..5d303a9

[PATCH 5/7] lpc1768_mbed_ahb_ram_eth-testsuite.tcfg: Add rbheap01

2014-11-04 Thread Joel Sherrill
--- .../arm/lpc176x/make/custom/lpc1768_mbed_ahb_ram_eth-testsuite.tcfg | 1 + 1 file changed, 1 insertion(+) diff --git a/c/src/lib/libbsp/arm/lpc176x/make/custom/lpc1768_mbed_ahb_ram_eth-testsuite.tcfg b/c/src/lib/libbsp/arm/lpc176x/make/custom/lpc1768_mbed_ahb_ram_eth-testsuite.tcfg

[PATCH 4/7] lm3s3749-testsuite.tcfg: Add dl01

2014-11-04 Thread Joel Sherrill
--- c/src/lib/libbsp/arm/lm3s69xx/make/custom/lm3s3749-testsuite.tcfg | 1 + 1 file changed, 1 insertion(+) diff --git a/c/src/lib/libbsp/arm/lm3s69xx/make/custom/lm3s3749-testsuite.tcfg b/c/src/lib/libbsp/arm/lm3s69xx/make/custom/lm3s3749-testsuite.tcfg index bc92170..30aaea0 100644 ---

Re: [PATCH 1/7] libdl/Makefile.am: Need preinstall on all targets

2014-11-04 Thread Chris Johns
Hi Joel, These look fine. Chris On 5/11/2014 8:25 am, Joel Sherrill wrote: --- cpukit/libdl/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpukit/libdl/Makefile.am b/cpukit/libdl/Makefile.am index 11f1478..5c3cd15 100644 --- a/cpukit/libdl/Makefile.am

Re: [PATCH] Add GPIO, I2C and SPI support for the RPi BSP

2014-11-04 Thread Andre Marques
Hello Pavel, On 10/31/14 15:41, Pavel Pisa wrote: Hello Andre, On Friday 31 of October 2014 12:56:40 Andre Marques wrote: +/** + * @brief Generic ISR that clears the event register on the Raspberry Pi and calls + *an user defined ISR. + * + * @param[in] arg Void pointer to a

Re: [PATCH] Add GPIO, I2C and SPI support for the RPi BSP

2014-11-04 Thread Gedare Bloom
On Tue, Nov 4, 2014 at 6:29 PM, Joel Sherrill joel.sherr...@oarcorp.com wrote: On November 4, 2014 5:27:51 PM CST, Andre Marques andre.lousa.marq...@gmail.com wrote: On 11/04/14 23:16, Joel Sherrill wrote: On 11/4/2014 5:01 PM, Andre Marques wrote: Hi gedare, will send a new version of