Re: RTEMS 4.12 gcc-7.1.0/binutils-2.28 test results

2017-05-31 Thread Joel Sherrill
On Wednesday, May 31, 2017, Chris Johns wrote: > Hi, > > I am testing RSB patches to move 4.12 to gcc 7.1.0/binutils-2.28. > > The SH arch fails to build on FreeBSD 11.0. The issue is > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80923. > > RTEMS BSP Builder results summary for: > > $ rtems-bsp-

[PATCH] rtemstoolkit/rld-process.h: Include rld.h to find 'strings' definition

2017-05-31 Thread Cillian O'Donnell
--- rtemstoolkit/rld-process.h | 1 + 1 file changed, 1 insertion(+) diff --git a/rtemstoolkit/rld-process.h b/rtemstoolkit/rld-process.h index ae89b15..fc9b7bc 100644 --- a/rtemstoolkit/rld-process.h +++ b/rtemstoolkit/rld-process.h @@ -28,6 +28,7 @@ #include #include #include +#include "r

Re: rtems-test runtime errors qemu.cfg

2017-05-31 Thread Cillian O'Donnell
I ran it without the --coverage flag and got the same qemu.cfg error although the exit code changed from 2 to 1 which from what I read amounts to about the same problem, syntax error, invalid path, something like that. error: qemu.cfg:81: execute failed: qemu-system-i386 -m 128 -boot b -hda /home

[PATCH v2] Fixes typos in README.txt

2017-05-31 Thread Tanu Hari Dixit
2 typos fixed --- README.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.txt b/README.txt index f09317e..c1b7e6f 100644 --- a/README.txt +++ b/README.txt @@ -316,7 +316,7 @@ existing documentation for an example and if unsure ask. Heading Description

Re: [PATCH] Fixes typos in README.txt

2017-05-31 Thread Tanu Hari Dixit
Hello Chris, I have fixed the above authorship issue and sent the patch again. Thank you. Regards, Tanu. On Wed, May 31, 2017 at 7:26 AM, Chris Johns wrote: > On 29/05/2017 22:29, Tanu Hari Dixit wrote: >> >> From: tokencolour > > > Could we please have your name in the commit? It make the git l

[PATCH 2/2] Fixes to get a clean build with gcc-7.1.0/binutils-2.28.

2017-05-31 Thread Chris Johns
- SH has not been moved to gcc-7.1.0 because of an ICE on FreebSD. - PowerPC is still on binutils-2.27. --- rtems/config/4.12/rtems-default.bset | 2 +- rtems/config/4.12/rtems-powerpc.bset | 18 +- rtems/config/4.12/rtems-sh.bset

[PATCH 1/2] Update tools to gcc 7.1.0 and binutils 2.28

2017-05-31 Thread Chris Johns
From: Joel Sherrill --- rtems/config/4.12/rtems-default.bset | 4 +- rtems/config/tools/rtems-binutils-2.28-1.cfg | 22 .../rtems-gcc-7.1.0-newlib-2.5.0.20170323-1.cfg| 64 ++ 3 files changed, 88 insertions(+), 2 deletions(-) create mode 100

Re: [PATCH v2] Fixes typos in README.txt

2017-05-31 Thread Chris Johns
Pushed. Thank you. On 31/5/17 8:22 pm, Tanu Hari Dixit wrote: > 2 typos fixed > --- > README.txt | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/README.txt b/README.txt > index f09317e..c1b7e6f 100644 > --- a/README.txt > +++ b/README.txt > @@ -316,7 +316,7 @@ existi

Re: [PATCH] rtemstoolkit/rld-process.h: Include rld.h to find 'strings' definition

2017-05-31 Thread Chris Johns
Pushed. Thank you. On 31/5/17 6:26 pm, Cillian O'Donnell wrote: > --- > rtemstoolkit/rld-process.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/rtemstoolkit/rld-process.h b/rtemstoolkit/rld-process.h > index ae89b15..fc9b7bc 100644 > --- a/rtemstoolkit/rld-process.h > +++ b/rtemstool

Re: RTEMS 4.12 gcc-7.1.0/binutils-2.28 test results

2017-05-31 Thread Chris Johns
On 31/5/17 5:00 pm, Joel Sherrill wrote> On Wednesday, May 31, 2017, Chris Johns > wrote: > > I am happy to push the patches to update to gcc-7.1.0 and binutils-2.28 > and keep > SH on the current tools and the PowerPC on binutils-2.27. > > > This sounds reason

[PATCH v3] User Manual: Added rtems-tester in the docs

2017-05-31 Thread Tanu Hari Dixit
Adds as part of Tools --- user/tools/index.rst| 1 + user/tools/rtems-tester.rst | 636 2 files changed, 637 insertions(+) create mode 100644 user/tools/rtems-tester.rst diff --git a/user/tools/index.rst b/user/tools/index.rst index d77a7ca.

Re: Building RISC-V BSP

2017-05-31 Thread Denis Obrezkov
Thanks, I downloaded it. There was a mistake also that _JBLEN wasn't defined in machine/setjmp.h I don't know the exact value, so I did the following: #ifdef __riscv /* TBD: not the exact number */ #define _JBLEN 16 #endif Now, it compiles further. But then I get the error: riscv32-rtems4.12-gc

Re: [PATCH] Added documentation for rtems-tester in rtems-docs

2017-05-31 Thread Tanu Hari Dixit
Hello Chris, Gedare, I have revised the patch and sent it again. Thank you. Tanu. On Wed, May 31, 2017 at 6:09 AM, Chris Johns wrote: > On 31/05/2017 03:10, Tanu Hari Dixit wrote: >> >> >> I just added the image following what was already in rtems-tools.git >> repo. Maybe it is not really needed

Re: Building RISC-V BSP

2017-05-31 Thread Denis Obrezkov
2017-05-31 16:39 GMT+03:00 Denis Obrezkov : > Thanks, I downloaded it. > There was a mistake also that _JBLEN wasn't defined in machine/setjmp.h > I don't know the exact value, so I did the following: > #ifdef __riscv > > /* TBD: not the exact number */ > > #define _JBLEN 16 > > #endif > > Now, it

Re: GSOC student question

2017-05-31 Thread Sichen Zhao
Ok, i know what you mean, i will remove the old i2c driver in my latest version of i2c. Best Regards Sichen Zhao From: devel on behalf of Joel Sherrill Sent: Friday, May 26, 2017 23:12 To: Ben Gras Cc: rtems-de...@rtems.org Subject: Re: GSOC student qu

Re: RTEMS 4.12 gcc-7.1.0/binutils-2.28 test results

2017-05-31 Thread Sebastian Huber
- Chris Johns schrieb: > On 31/5/17 5:00 pm, Joel Sherrill wrote> On Wednesday, May 31, 2017, Chris > Johns > > > wrote: > > > > I am happy to push the patches to update to gcc-7.1.0 and binutils-2.28 > > and keep > > SH on the current tools and the PowerP

Re: RTEMS 4.12 gcc-7.1.0/binutils-2.28 test results

2017-05-31 Thread Chris Johns
On 01/06/2017 07:33, Sebastian Huber wrote: - Chris Johns schrieb: On 31/5/17 5:00 pm, Joel Sherrill wrote> On Wednesday, May 31, 2017, Chris Johns > wrote: I am happy to push the patches to update to gcc-7.1.0 and binutils-2.28 and keep SH on the curr

Re: [PATCH v3] User Manual: Added rtems-tester in the docs

2017-05-31 Thread Chris Johns
Thanks for patch. Comments in the email. Note, I seem to have broken the section headings and will fix soon. On 31/05/2017 23:33, Tanu Hari Dixit wrote: > Adds as part of Tools > --- > user/tools/index.rst| 1 + > user/tools/rtems-tester.rst | 636 > +++

Re: Building RISC-V BSP

2017-05-31 Thread Hesham Almatary
Hi Denis, I submitted two patches for the tools, please use the latest only and rebuild the tools. This should avoid the newlib issues you had above as it uses main riscv patches. I'll look into the port this weekend and submit fixes unless you beat me to it. Meanwhile, you can submit error messa

Re: RTEMS 4.12 gcc-7.1.0/binutils-2.28 test results

2017-05-31 Thread Chris Johns
On 01/06/2017 10:43, Chris Johns wrote: > On 01/06/2017 07:33, Sebastian Huber wrote: >> >> Could you please use Binutils 2.28 for PowerPC. I will fix the bootloader >> after the RSB update. >> > > Oops, I pushed the patch while taking with Joel before I saw this. Can you > please undo the change

RFC: Any Outstanding Issues Before Branching 4.12?

2017-05-31 Thread Joel Sherrill
Hi Once the recent tool switch to gcc 7.1 has settled, I know of no major outstanding issues holding back branching 4.12. If anyone has items they consider critical to resolve before branching or releasing 4.12.0, please speak up ASAP. Otherwise, we will be moving tickets to either the next major