official elf2flt homepage/repo updated

2015-12-23 Thread Mike Frysinger
with the demise of the cvs repo, we've moved officially to github: https://github.com/uclinux-dev/elf2flt this is based on the git mirror i had been previously maintaining here: git://wh0rd.org/elf2flt.git https://github.com/vapier/elf2flt so if you happened to have a copy

Re: [PATCH] Enable mips32r6 and mips64r6 builds.

2015-12-23 Thread Steve Ellcey
On Wed, 2015-12-23 at 20:40 +0100, Waldemar Brodkorb wrote: > Hi Steve, > > Steve Ellcey wrote, > > > This patch adds mips32r6 and mips64r6 architecture options to the MIPS > > build. > > so this enables mips32r6 and mips64r6 in uClibc. > Is there any embedded board I could use to test these? >

Re: [PATCH] Enable mips32r6 and mips64r6 builds.

2015-12-23 Thread Waldemar Brodkorb
Hi Steve, Steve Ellcey wrote, > This patch adds mips32r6 and mips64r6 architecture options to the MIPS > build. so this enables mips32r6 and mips64r6 in uClibc. Is there any embedded board I could use to test these? I think my recent MIPS board CI20 is MIPS32r2. So what options do I have? BTW:

Mailing list Website certificate expired?

2015-12-23 Thread Steve Ellcey
Is anyone else having problems accessing the uclibc mailing list archives on the web. I.e. seeing https://lists.uclibc.org/pipermail/uclibc/ I get a "This Connection is Untrusted" warning and when I go to this page (Ubuntu 12.04, firefox 43.0) and if I click on the 'Technical Details' I see: l

[PATCH] Enable mips32r6 and mips64r6 builds.

2015-12-23 Thread Steve Ellcey
This patch adds mips32r6 and mips64r6 architecture options to the MIPS build. Signed-off-by: Steve Ellcey --- Rules.mak |2 ++ extra/Configs/Config.mips | 21 + 2 files changed, 23 insertions(+) diff --git a/Rules.mak b/Rules.mak index de9ffb3..5544249

[PATCH] Replace bltzal with lapc for MIPS R6 builds.

2015-12-23 Thread Steve Ellcey
The R6 version of MIPS does not support the bltzal instruction. This patch changes dl-startup.h and dl-sysdep.h to use lapc on R6 instead. lapc is a new R6 insruction so older systems need to continue to use bltzal in order to load register $31. Signed-off-by: Steve Ellcey --- ldso/ldso/mips/dl

RE: [PATCH v3 1/3] libc: fix setting return value and errno in fallocate()

2015-12-23 Thread Yuriy Kolerov
Ping :( Regards, Yuriy Kolerov > -Original Message- > From: Yuriy Kolerov [mailto:yuriy.kole...@synopsys.com] > Sent: Wednesday, September 23, 2015 3:44 PM > To: uclibc@uclibc.org; Vineet Gupta; Alexey Brodkin; Anton Kolesov > Cc: Francois Bedard; yuriy.kole...@synopsys.com > Subject: [P

Re: [PATCH v2] nptl: remove duplicate vfork() in libpthread

2015-12-23 Thread Vineet Gupta
On Tuesday 20 October 2015 01:40 PM, Vineet Gupta wrote: > On Monday 21 September 2015 09:28 AM, Vineet Gupta wrote: Assuming above is correct, you want those macros to be removed from nptl/*/**/vfork.S as well as libc/sysdeps/linux/*/vfork.S and >> preferably replace

Re: [PATCH] ARCv2: update memset() so it could be used without double load/stores

2015-12-23 Thread Vineet Gupta
On Tuesday 20 October 2015 02:33 PM, Vineet Gupta wrote: > On Monday 20 July 2015 07:42 PM, Alexey Brodkin wrote: >> From: Claudiu Zissulescu >> >> Existing version of memset() relies on existence of 64-bit load/stores. >> While ARC HS38 may not have those instructions implemented in SoC. >> >> Pr