[PATCH 2/2] posix: add clock_nanosleep and tests

2016-06-10 Thread Gedare Bloom
closes #2732 --- cpukit/posix/src/nanosleep.c | 55 -- testsuites/psxtests/psxhdrs/Makefile.am| 1 + testsuites/psxtests/psxhdrs/time/clock_nanosleep.c | 35 +++ testsuites/psxtmtests/Makefile.am | 3 + testsuites/psxtmtests/conf

Re: libbsd: Argument list too long

2016-06-10 Thread Joel Sherrill
On Jun 10, 2016 9:16 AM, "Sebastian Huber" < sebastian.hu...@embedded-brains.de> wrote: > > Hello, > > I added the NFSv3 client to libbsd which has now 884 files for the libbsd.a library. On msys2 this leads to an "Argument list too long" error during library creation. Is there a way to fix this in

libbsd: Argument list too long

2016-06-10 Thread Sebastian Huber
Hello, I added the NFSv3 client to libbsd which has now 884 files for the libbsd.a library. On msys2 this leads to an "Argument list too long" error during library creation. Is there a way to fix this in waf, e.g. you can pass the files to GNU ld via an input file instead of the argument list

Re: Porting BSD Mailbox for RPi

2016-06-10 Thread Mudit Jain
Hi, The libbsd one is a concatenation of all the functions, generic as well as bsp specific into one file.The recent version of FreeBSD implements it such that bcm_sdhci.c uses generic functions defined in sdhci.c and builds the driver specific to the bsp. This provides more modularity. Another di