Re: [PATCH 0/6] rtems-source-builder patche series for graphic libraries

2015-11-30 Thread Chris Johns
On 30/11/2015 10:16 AM, Pavel Pisa wrote:
> 
> I have applied your patches on RSB master the result
> is identical to the last one with updated libPNG.
> 
> I have rerun build and all packages has build OK.
> 

Thanks.

> Joel, please, apply patches.

I am looking at them now.

> For future, I am not sure if these 4.11 related updates
> should or should not propagate to RSB 4.11 branch.
> But I suggest to have them on master for sure.

I am happy to push to 4.11. They are 3rd party packages and I suspect
any issues will be minor and can be fixed on dot release.

> 
> Qiao, thanks for contribution,
> 

Thank you Qiao.

Chris
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


Re: [PATCH] Fix declaration of pthread-structs in s-osinte-rtems.ads (ada/68169)

2015-11-30 Thread Jan Sommer
Could someone with write access please commit the patch?
The paperwork with the FSF has gone through. If something else is missing, 
please tell me.
I won't be available next week.

Best regards,

   Jan

Am Tuesday 24 November 2015, 08:47:49 schrieb Jan Sommer:
> It has gone through.
> That was why I resubmitted the patch.
> Joel can confirm. Apparently he is on a respective list and saw my paperwork 
> being cleared.
> 
> Best regards,
> 
>Jan
> 
> Am Tuesday 24 November 2015, 07:45:30 schrieb Sebastian Huber:
> > Hello Jan,
> > 
> > On 23/11/15 23:15, Jan Sommer wrote:
> > > If someone with commit rights could check and push the patches we might 
> > > get it into the next release.
> > 
> > what is the status of your copyright assignment to the FSF which is 
> > required to integrate changes into GCC?
> > 
> > 
> 
> ___
> 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


[PATCH] bsp/raspberrypi: Store the current taskid before waiting for the transient event in i2c-driver

2015-11-30 Thread Jan Sommer
Before having the i2c device as an shared resource will create a deadlock 
because the taskid
for the transient_event is only stored during device registration.
---
 c/src/lib/libbsp/arm/raspberrypi/i2c/i2c.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/c/src/lib/libbsp/arm/raspberrypi/i2c/i2c.c 
b/c/src/lib/libbsp/arm/raspberrypi/i2c/i2c.c
index 14a2467..9bf90ec 100644
--- a/c/src/lib/libbsp/arm/raspberrypi/i2c/i2c.c
+++ b/c/src/lib/libbsp/arm/raspberrypi/i2c/i2c.c
@@ -91,6 +91,7 @@ static int rpi_i2c_bus_transfer(rpi_i2c_bus *bus)
   BCM2835_REG(BCM2835_I2C_C) |= (1 << 9);
 
   /* Sleep until the TX FIFO has free space for a new write. */
+  bus->task_id = rtems_task_self();
   if (
   rtems_event_transient_receive(RTEMS_WAIT, bus->base.timeout) !=
   RTEMS_SUCCESSFUL
-- 
2.5.0

___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel