Re: CVS commit: src

2016-08-04 Thread Kamil Rytarowski
On 04.08.2016 08:43, Christos Zoulas wrote:
> Module Name:  src
> Committed By: christos
> Date: Thu Aug  4 06:43:43 UTC 2016
> 
> Modified Files:
>   src/include: limits.h
>   src/lib/libc/gen: sysconf.c
>   src/sys/kern: kern_sig.c sys_sig.c
>   src/sys/sys: signal.h signalvar.h unistd.h
>   src/tests/lib/libc/sys: t_sigqueue.c
> 
> Log Message:
> Realtime signal support from GSoC 2016, Charles Cui.
> 

Thank you very much for this work!



signature.asc
Description: OpenPGP digital signature


Re: CVS commit: src/sys/arch

2016-08-04 Thread Joerg Sonnenberger
On Sun, Jul 24, 2016 at 02:09:22PM +, Maxime Villard wrote:
> Fix this by properly saving and restoring the EFER MSR. It's a little
> tricky since the wakeup code uses %edx, but rdmsr overwrites it. We just
> save it in %esi.

Use push/pop around it, please?

Joerg


Re: CVS commit: src/sys/arch/arm/omap

2016-08-04 Thread KIYOHARA Takashi
Hi!


From: "Jonathan A. Kollasch" 
Date: Thu, 4 Aug 2016 20:07:18 +

> Module Name:  src
> Committed By: jakllsch
> Date: Thu Aug  4 20:07:18 UTC 2016
> 
> Modified Files:
>   src/sys/arch/arm/omap: omap3_sdhc.c
> 
> Log Message:
> TI_DM37xx does not currently have a working omapscm(4), which provides
> omap_devid().  Avoid using omap_devid() until correctly fixed.

Why not attach omapscm?
My Overo EarthSTORM(AM3703) is working with omapscm.  The OVERO supports
OMAP 3503, 3530, DM3730 and AM3703.

Thanks,
--
kiyohara


Re: CVS commit: src/sys/arch/arm/omap

2016-08-04 Thread Jonathan A. Kollasch
On Fri, Aug 05, 2016 at 11:27:13AM +0900, KIYOHARA Takashi wrote:
> Hi!
> 
> 
> From: "Jonathan A. Kollasch" 
> Date: Thu, 4 Aug 2016 20:07:18 +
> 
> > Module Name:src
> > Committed By:   jakllsch
> > Date:   Thu Aug  4 20:07:18 UTC 2016
> > 
> > Modified Files:
> > src/sys/arch/arm/omap: omap3_sdhc.c
> > 
> > Log Message:
> > TI_DM37xx does not currently have a working omapscm(4), which provides
> > omap_devid().  Avoid using omap_devid() until correctly fixed.
> 
> Why not attach omapscm?
> My Overo EarthSTORM(AM3703) is working with omapscm.  The OVERO supports
> OMAP 3503, 3530, DM3730 and AM3703.
> 
> Thanks,
> --
> kiyohara

BEAGLEBOARDXM w/o omapscm0:
src/sys/arch/arm/omap/omap3_sdhc.c:236: undefined reference to `omap_devid'

BEAGLEBOARDXM w/
omapscm0at obio0 addr 0x48002000 size 0x1000 :

src/sys/arch/arm/omap/omap3_scm.c: In function 'omap3_scm_match':
src/sys/arch/arm/omap/omap3_scm.c:138:25:
error: 'SCM_BASE' undeclared (first use in this function)
  if (obio->obio_addr == SCM_BASE)


Jonathan Kollasch