Re: [PATCH 2/2] user, eclipse: Remove RSB sb-bootstrap command

2020-08-11 Thread Chris Johns
On 11/8/20 11:35 pm, Gedare Bloom wrote: > On Mon, Aug 10, 2020 at 8:52 PM wrote: >> >> From: Chris Johns >> >> Update #4046 >> --- >> eclipse/rtems.rst | 2 +- >> user/installation/developer.rst | 6 +++--- >> user/installation/kernel.rst| 6 +++--- >> 3 files changed, 7 inser

Re: [PATCH] user, README: Add Python script host set up information

2020-08-11 Thread Chris Johns
On 11/8/20 11:33 pm, Gedare Bloom wrote: > Thanks for doco. A few typos to fix Thanks for the review. I will make the corrections and push. > > On Mon, Aug 10, 2020 at 8:33 PM wrote: >> >> From: Chris Johns >> >> - Add Python3 and venv to the README >> >> - Add a section on how to set up a hos

GSoC IRC Meeting Time Change

2020-08-11 Thread Gedare Bloom
Hello everyone, In coordination with the students, I'm moving the weekly IRC meeting to 9pm IST on Wednesdays for the remainder (3 weeks) of the coding period. That includes this week's meeting. This change will help some students whose classes are resuming. Gedare ___

Re: Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Gedare Bloom
On Tue, Aug 11, 2020 at 9:07 AM Richi Dubey wrote: >> >> If you hit this break point, try to use >> bt >> and then set a conditional break point to the offending function, reset >> the target, and run again. > > I will use this. Thanks again. > >> It depends on the correctness of the program call

Re: Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Richi Dubey
> > If you hit this break point, try to use > bt > and then set a conditional break point to the offending function, reset > the target, and run again. I will use this. Thanks again. It depends on the correctness of the program call stack though, so you may > on > occasion find the bt is corrupt/

Re: Need help understand how the scheduler table entries work

2020-08-11 Thread Richi Dubey
Thanks for the reply. Yes, I got it from your previous mail( https://git.rtems.org/rtems/tree/cpukit/include/rtems/score/scheduler.h#n286 ). On Tue, Aug 11, 2020 at 6:39 PM Gedare Bloom wrote: > On Tue, Aug 11, 2020 at 12:42 AM Richi Dubey wrote: > > > > This really helped. Thank you. > > > >>

Re: GSoC2020: RTEMS OpenFirmWare FDT Implementation (outline)

2020-08-11 Thread Niteesh G. S.
Ping. Sorry for pinging so quickly but please understand that this is hampering my progress. Thanks, Niteesh. On Sun, Aug 9, 2020 at 12:52 AM Niteesh G. S. wrote: > Hello, > > I have created a basic outline of how the RTEMS openfirm API would > look like. The implementation is inspired by the

Re: [PATCH 2/2] user, eclipse: Remove RSB sb-bootstrap command

2020-08-11 Thread Gedare Bloom
On Mon, Aug 10, 2020 at 8:52 PM wrote: > > From: Chris Johns > > Update #4046 > --- > eclipse/rtems.rst | 2 +- > user/installation/developer.rst | 6 +++--- > user/installation/kernel.rst| 6 +++--- > 3 files changed, 7 insertions(+), 7 deletions(-) > > diff --git a/eclipse/rt

Re: [PATCH] user, README: Add Python script host set up information

2020-08-11 Thread Gedare Bloom
Thanks for doco. A few typos to fix On Mon, Aug 10, 2020 at 8:33 PM wrote: > > From: Chris Johns > > - Add Python3 and venv to the README > > - Add a section on how to set up a host if the python command is > not available. > > Update #4037 > --- > README.txt| 18 -- > user/h

Re: Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Gedare Bloom
On Tue, Aug 11, 2020 at 4:30 AM Sebastian Huber wrote: > > On 11/08/2020 11:40, Richi Dubey wrote: > > (gdb) continue > > Continuing. > > > > Thread 1 hit Breakpoint 2, _ARMV4_Exception_data_abort_default () at > > /home/richi/quick-start/src/rtems/c/src/../../cpukit/score/cpu/arm/armv4-exception-

Re: Need help understand how the scheduler table entries work

2020-08-11 Thread Gedare Bloom
On Tue, Aug 11, 2020 at 12:42 AM Richi Dubey wrote: > > This really helped. Thank you. > >> There is not really anything to change about it. You specialize the >> scheduler by the Scheduler_Context and Scheduler_Operations >> structures. You still just pass through the context base to the >> sched

Re: [PATCH v2] rtems/printer.h Fix build warnings -Wclass-memaccess

2020-08-11 Thread Joel Sherrill
On Tue, Aug 11, 2020 at 3:41 AM Aschref Ben-Thabet < aschref.ben-tha...@embedded-brains.de> wrote: > From: Aschref Ben Thabet > > --- > cpukit/include/rtems/printer.h | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/cpukit/include/rtems/printer.h > b/cpukit/include/r

Re: Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Sebastian Huber
On 11/08/2020 11:40, Richi Dubey wrote: (gdb) continue Continuing. Thread 1 hit Breakpoint 2, _ARMV4_Exception_data_abort_default () at /home/richi/quick-start/src/rtems/c/src/../../cpukit/score/cpu/arm/armv4-exception-default.S:70 If you hit this break point, try to use bt and then set a c

Re: Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Richi Dubey
Thank you for the quick response. The script helped. I hate asking others for a lot of help, but I do not know what to do now that I have caught the exception. I also put Init as a breakpoint, but the program breaks at _ARMV4_Exception first, What should I do about this? How do I resolve/fix the c

[PATCH v2] rtems/printer.h Fix build warnings -Wclass-memaccess

2020-08-11 Thread Aschref Ben-Thabet
From: Aschref Ben Thabet --- cpukit/include/rtems/printer.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cpukit/include/rtems/printer.h b/cpukit/include/rtems/printer.h index dbd887221e..310937cc2f 100644 --- a/cpukit/include/rtems/printer.h +++ b/cpukit/include/rtems

Re: Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Sebastian Huber
On 11/08/2020 09:59, Sebastian Huber wrote: arm-rtems6-gdb --arm.gdb app.exe arm-rtems6-gdb --command=arm.gdb app.exe -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47 41-16 Fax : +49 89 189 47 41-09 E-Mail : sebastian.hu

Re: Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Sebastian Huber
On 11/08/2020 09:51, Richi Dubey wrote: Hi, I have been trying to debug a test suite (this patch ) with qemu and gdb by running the following commands:

Need help in debugging a testsuite over qemu and gdb

2020-08-11 Thread Richi Dubey
Hi, I have been trying to debug a test suite (this patch ) with qemu and gdb by running the following commands: ./arm-rtems5-gdb ~/quick-star

Re: [PATCH v2] libtests/dl10: Delete unused functions

2020-08-11 Thread Sebastian Huber
On 11/08/2020 09:45, Aschref Ben-Thabet wrote: From: Aschref Ben Thabet --- v2: Removed double blank line. Thanks, I checked it in. -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47 41-16 Fax : +49 89 189 47 41-09 E-Mail

[PATCH v2] libtests/dl10: Delete unused functions

2020-08-11 Thread Aschref Ben-Thabet
From: Aschref Ben Thabet --- v2: Removed double blank line. testsuites/libtests/dl10/dl-load.c | 22 -- 1 file changed, 22 deletions(-) diff --git a/testsuites/libtests/dl10/dl-load.c b/testsuites/libtests/dl10/dl-load.c index dee1d6e9cc..7a4bae9c17 100644 --- a/testsuite