[PATCH] gcc: Use the RSB release for released tools.

2018-02-06 Thread Chris Johns
Using the RSB release version for the gcc version string means the tools have a version string that matches the release. Close #3294 --- rtems/config/rtems-base.bset | 3 ++- source-builder/config/gcc-common-1.cfg | 9 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --g

[PATCH] gcc: Use the RSB release for released tools.

2018-02-06 Thread Chris Johns
Using the RSB release version for the gcc version string means the tools have a version string that matches the release. Close #3293 --- rtems/config/rtems-base.bset | 3 ++- source-builder/config/gcc-common-1.cfg | 9 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --g

[PATCH] gcc: Use the RSB release for released tools.

2018-02-06 Thread Chris Johns
Using the RSB release version for the gcc version string means the tools have a version string that matches the release. Close #3074 --- rtems/config/rtems-base.bset | 3 ++- source-builder/config/gcc-common-1.cfg | 9 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --g

Re: Contribute to project

2018-02-06 Thread Abhinav Jain
Sir, Thanks a lot for the guidance. I will start with contributing to an existing project. Thanks and Regards Abhinav jain On Feb 6, 2018 10:55 PM, "Gedare Bloom" wrote: > Hello Abhinav Jain, > > It is good that you are studying. Now, you should pursue two paths: > 1. Produce some code for RTE

[PATCH] 4.10: Disable building the simulator in GDB for SPARC and LM32.

2018-02-06 Thread Chris Johns
There is POSIX code that does not build on Windows. Close #3291 --- rtems/config/4.10/rtems-lm32.bset | 3 +++ rtems/config/4.10/rtems-sparc.bset | 3 +++ 2 files changed, 6 insertions(+) diff --git a/rtems/config/4.10/rtems-lm32.bset b/rtems/config/4.10/rtems-lm32.bset index c227def..64906ed

Re: Contribute to project

2018-02-06 Thread Gedare Bloom
Hello Abhinav Jain, It is good that you are studying. Now, you should pursue two paths: 1. Produce some code for RTEMS, perhaps by fixing a bug. A good place to start is the tickets on the open releases: https://devel.rtems.org/query?status=assigned&status=accepted&status=reopened&group=status&mil

[PATCH 06/11] libdl: Use self-contained recursive mutex

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/include/rtems/rtl/rtl.h | 9 ++--- cpukit/libdl/rtl.c | 70 +++-- testsuites/libtests/dl03/dl-cache.c | 2 +- 3 files changed, 16 insertions(+), 65 deletions(-) diff --git a/cpukit/include/rtems/rtl/rtl.h b/cpukit/in

[PATCH 10/11] syslog: Use self-contained recursive mutex

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/libnetworking/lib/syslog.c | 30 ++ 1 file changed, 6 insertions(+), 24 deletions(-) diff --git a/cpukit/libnetworking/lib/syslog.c b/cpukit/libnetworking/lib/syslog.c index 066d7ab0e4..8f0cbc8885 100644 --- a/cpukit/libnetworking/lib/syslog.c

[PATCH 05/11] ftpd: Use self-contained synchronization objects

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/ftpd/ftpd.c | 74 -- 1 file changed, 22 insertions(+), 52 deletions(-) diff --git a/cpukit/ftpd/ftpd.c b/cpukit/ftpd/ftpd.c index 8e3bc08ece..0d4256bc23 100644 --- a/cpukit/ftpd/ftpd.c +++ b/cpukit/ftpd/ftpd.c @@ -205,6

[PATCH 11/11] stdio-redirector: Use self-contained mutex

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/include/rtems/stdio-redirect.h | 3 +- cpukit/libmisc/redirector/stdio-redirect.c | 90 ++ 2 files changed, 31 insertions(+), 62 deletions(-) diff --git a/cpukit/include/rtems/stdio-redirect.h b/cpukit/include/rtems/stdio-redirect.h inde

[PATCH 01/11] libblock: Use self-contained mutex for nvdisk

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/libblock/src/nvdisk.c | 92 +++- 1 file changed, 39 insertions(+), 53 deletions(-) diff --git a/cpukit/libblock/src/nvdisk.c b/cpukit/libblock/src/nvdisk.c index 1df0ca2ae4..bb1fc5dbe9 100644 --- a/cpukit/libblock/src/nvdisk.c +++ b

[PATCH 07/11] libdl: Use self-contained mutex for RAP

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/libdl/rap.c | 92 ++ 1 file changed, 16 insertions(+), 76 deletions(-) diff --git a/cpukit/libdl/rap.c b/cpukit/libdl/rap.c index 87b3bc36e5..c512571ac8 100644 --- a/cpukit/libdl/rap.c +++ b/cpukit/libdl/rap.c @@ -19,6 +

[PATCH 08/11] libdl: Fix potential overwrite of dest buffer

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/libdl/rap.c | 2 +- cpukit/libdl/rtl-error.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpukit/libdl/rap.c b/cpukit/libdl/rap.c index c512571ac8..bb42072b21 100644 --- a/cpukit/libdl/rap.c +++ b/cpukit/libdl/rap.c @@ -419,7 +419,7 @@ rtems

[PATCH 04/11] libblock: Use self-contained mutex for media

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/include/rtems/media.h | 5 ++- cpukit/libblock/src/media.c | 103 +++ 2 files changed, 39 insertions(+), 69 deletions(-) diff --git a/cpukit/include/rtems/media.h b/cpukit/include/rtems/media.h index 77a1aa8348..a9420b0106 100644

[PATCH 09/11] tftpfs: Use self-contained mutex

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/libnetworking/lib/tftpDriver.c | 32 +--- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/cpukit/libnetworking/lib/tftpDriver.c b/cpukit/libnetworking/lib/tftpDriver.c index 1a5823bc12..97c9998aec 100644 --- a/cpukit/libnetworkin

[PATCH 02/11] libblock: Use self-contained mutex for flashdisk

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/libblock/src/flashdisk.c | 131 +--- 1 file changed, 57 insertions(+), 74 deletions(-) diff --git a/cpukit/libblock/src/flashdisk.c b/cpukit/libblock/src/flashdisk.c index 1761178b5a..0543f301df 100644 --- a/cpukit/libblock/src/flashdis

[PATCH 03/11] libblock: Use self-contained mutex for sparse disk

2018-02-06 Thread Sebastian Huber
Update #2843. --- cpukit/include/rtems/sparse-disk.h | 3 ++- cpukit/libblock/src/sparse-disk.c | 32 2 files changed, 6 insertions(+), 29 deletions(-) diff --git a/cpukit/include/rtems/sparse-disk.h b/cpukit/include/rtems/sparse-disk.h index e558e08925..7233c7

Re: Contribute to project

2018-02-06 Thread Abhinav Jain
Sir, I have studied about SASOS. It's really a great approach to make the process faster by avoiding multiple copies of the data. I read about two SASOS namely Angel system(developed at City University, London) and Mungi system(developed by University of New South Wales, Australia). I also studied

Re: Website and RTEMS 5

2018-02-06 Thread Sebastian Huber
On 06/02/18 16:11, Gedare Bloom wrote: I used site search https://www.google.com/search?q=4.12&btnG=Google+Search&sitesearch=rtems.org I found one problem left: https://git.rtems.org/rtems-tools/tree/tools/4.12 This is not a problem. It is very important that this stuff remains to be availabl

Re: Website and RTEMS 5

2018-02-06 Thread Gedare Bloom
I used site search https://www.google.com/search?q=4.12&btnG=Google+Search&sitesearch=rtems.org I found one problem left: https://git.rtems.org/rtems-tools/tree/tools/4.12 I guess otherwise the rtems.org domain is cleaned up. Did we make an announcement yet on users@? On Tue, Feb 6, 2018 at 9:5

Re: Website and RTEMS 5

2018-02-06 Thread Sebastian Huber
On 05/02/18 19:30, Gedare Bloom wrote: Done. I missed this message before. Thanks. Is there anything left to do with respect to the version number change or can I close https://devel.rtems.org/ticket/3220 ? -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchhei