Re: Help with RTEMS

2016-12-13 Thread Chris Johns
On 14/12/2016 14:58, Tanu Hari Dixit wrote: Thanks for helping me out with this. No problem. I tried with erc32 BSP and I can finally see the executables in /development/rtems/src/builds/erc32/sparc-rtems4.12/c/erc32/testsuites/samples. I also ran all tests with /development/rtems/4.12/bin$

Re: Help with RTEMS

2016-12-13 Thread Tanu Hari Dixit
Chris, Martin and Jennifer, Thanks for helping me out with this. I tried with erc32 BSP and I can finally see the executables in /development/rtems/src/builds/erc32/sparc-rtems4.12/c/erc32/testsuites/samples. I also ran all tests with /development/rtems/4.12/bin$ rtems-test --rtems-bsp=erc32

Re: Help with RTEMS

2016-12-13 Thread Chris Johns
On 14/12/2016 09:32, Martin Werner wrote: This seems to be because the sparc/sis BSP is removed in the latest master (as of a month ago: de7b174). Yes the sis BSP has been removed from master (4.12). For sparc you need to pick one of the other available BSPs, currently erc32 leon2 leon3 or

Re: [PATCH] Update Task Manager chapter

2016-12-13 Thread Chris Johns
On 13/12/2016 20:05, Sebastian Huber wrote: Introduce "Deprecated and Removed Directives" section. Update #2423. +1 Chris ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: Help with RTEMS

2016-12-13 Thread Tanu Hari Dixit
I did "find . -name ticker.exe" from /development/rtems/src/b-sis/testsuites/tools/generic but couldn't find the executable. I did a make clean, as you suggested, and then a make. Got the following output. I couldn't find an executable mentioned.

Re: Help with RTEMS

2016-12-13 Thread Tanu Hari Dixit
I'm sorry I posted the wrong output: the target should be sparc-rtems4.12 and not sparc-rtems4.11 Here is the right one: thd@thd-Inspiron-5537:~/development/rtems/src/b-sis$ ../rtems/configure --target=sparc-rtems4.12 --enable-rtemsbsp=sis --enable-tests=samples --prefix=${HOME}/install_path

[PATCH 7/7] Adding pipe support

2016-12-13 Thread Kevin Kirspel
--- testsuite/selectpollkqueue01/test_main.c | 186 ++- 1 file changed, 183 insertions(+), 3 deletions(-) mode change 100644 => 100755 testsuite/selectpollkqueue01/test_main.c diff --git a/testsuite/selectpollkqueue01/test_main.c

[PATCH 5/7] Adding pipe support

2016-12-13 Thread Kevin Kirspel
--- freebsd/sys/sys/pipe.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 freebsd/sys/sys/pipe.h diff --git a/freebsd/sys/sys/pipe.h b/freebsd/sys/sys/pipe.h old mode 100644 new mode 100755 index 20b1092..c59ecc7 --- a/freebsd/sys/sys/pipe.h +++

[PATCH 6/7] Adding pipe support

2016-12-13 Thread Kevin Kirspel
--- rtemsbsd/sys/fs/devfs/devfs_devs.c | 29 + 1 file changed, 29 insertions(+) mode change 100644 => 100755 rtemsbsd/sys/fs/devfs/devfs_devs.c diff --git a/rtemsbsd/sys/fs/devfs/devfs_devs.c b/rtemsbsd/sys/fs/devfs/devfs_devs.c old mode 100644 new mode 100755 index

[PATCH 3/7] Adding pipe support

2016-12-13 Thread Kevin Kirspel
--- libbsd.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libbsd.py b/libbsd.py index 3685191..d7a0a5f 100755 --- a/libbsd.py +++ b/libbsd.py @@ -258,6 +258,7 @@ def base(mm): 'sys/sys/_null.h', 'sys/sys/osd.h', 'sys/sys/pcpu.h', +

[PATCH 4/7] Adding pipe support

2016-12-13 Thread Kevin Kirspel
--- freebsd/sys/kern/sys_pipe.c | 273 +++- 1 file changed, 272 insertions(+), 1 deletion(-) mode change 100644 => 100755 freebsd/sys/kern/sys_pipe.c diff --git a/freebsd/sys/kern/sys_pipe.c b/freebsd/sys/kern/sys_pipe.c old mode 100644 new mode 100755

[PATCH 2/7] Adding pipe support

2016-12-13 Thread Kevin Kirspel
--- freebsd/sys/sys/pipe.h | 142 + 1 file changed, 142 insertions(+) create mode 100644 freebsd/sys/sys/pipe.h diff --git a/freebsd/sys/sys/pipe.h b/freebsd/sys/sys/pipe.h new file mode 100644 index 000..20b1092 --- /dev/null +++

Re: Help with RTEMS

2016-12-13 Thread Tanu Hari Dixit
Hey Punit, Thank you for your reply and pointing to the open projects. The problem is I don't have "testsuites" folder in /development/rtems/src/b-sis/sparc-rtems4.12/c. I'm still unable to find the executables. I can't seem to figure out where the "samples" folder is located. As I had mentioned

Re: Help with RTEMS

2016-12-13 Thread punit vara
Hi Tanu, https://github.com/RTEMS/rtems You can follow any of following open ideas to get contribute : https://devel.rtems.org/wiki/Developer/OpenProjects On Tue, Dec 13, 2016 at 11:40 AM, Tanu Hari Dixit wrote: > Hey Punit, > > I am Tanu, here. I am an

[PATCH] Update Task Manager chapter

2016-12-13 Thread Sebastian Huber
Introduce "Deprecated and Removed Directives" section. Update #2423. --- c-user/task_manager.rst | 364 1 file changed, 180 insertions(+), 184 deletions(-) diff --git a/c-user/task_manager.rst b/c-user/task_manager.rst index 76b7cca..d3b0b9b