[PATCH] user: Add the RSB sb-track command

2020-08-10 Thread chrisj
From: Chris Johns Updates #4036 --- user/rsb/commands.rst | 81 +++ 1 file changed, 81 insertions(+) diff --git a/user/rsb/commands.rst b/user/rsb/commands.rst index 04d3cea..4048568 100644 --- a/user/rsb/commands.rst +++ b/user/rsb/commands.rst @@

[PATCH 1/2] user: Remove RSB sb-builder command

2020-08-10 Thread chrisj
From: Chris Johns Updates #4045 --- user/rsb/commands.rst | 40 --- user/rsb/configuration.rst | 49 +++--- 2 files changed, 14 insertions(+), 75 deletions(-) diff --git a/user/rsb/commands.rst b/user/rsb/commands.rst index

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

2020-08-10 Thread chrisj
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/rtems.rst b/eclipse/rtems.rst index 4459749..3db2e7b 100644

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

2020-08-10 Thread chrisj
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/hosts/index.rst | 22 --- user/hosts/python.rst | 137

[PATCH 1/3] rtems: Remove RTEMS 6 build sets.

2020-08-10 Thread chrisj
From: Chris Johns Updates #4014 --- rtems/config/6/rtems-aarch64.bset| 4 rtems/config/6/rtems-all.bset| 19 --- rtems/config/6/rtems-arm.bset| 4 rtems/config/6/rtems-autotools-base.bset | 9 ---

[PATCH 3/3] bare/libusb: Fix the configuration and add a hash

2020-08-10 Thread chrisj
From: Chris Johns Updates #4014 --- bare/config/devel/libusb-1.0.18-1.cfg | 3 +++ source-builder/config/libusb-1-1.cfg | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bare/config/devel/libusb-1.0.18-1.cfg b/bare/config/devel/libusb-1.0.18-1.cfg index b47855b..494afbe

Re: [PATCH] sb/bootstrap: Remove the sb-bootsrap command

2020-08-10 Thread Chris Johns
On 11/8/20 1:20 am, Gedare Bloom wrote: > Please cleanup the doco too: In the works. > rtems-docs$ grep -r sb-boot > user/installation/developer.rst: $ > /c/opt/rtems/rsb/source-builder/sb-bootstrap > user/installation/kernel.rst: $ ./bootstrap -c && >

Re: Need help understand how the scheduler table entries work

2020-08-10 Thread Gedare Bloom
On Mon, Aug 10, 2020 at 9:10 AM Richi Dubey wrote: > > Hi, > > I want your help to figure out how the table entries for a scheduler work. > > For STRONG_APA scheduler, the flow is : > link > --- >

Re: [GSoC 2020] : BSP Buildset for EPICS (next steps)

2020-08-10 Thread junkes
Hello Mritunjay, I have now finished an EPICS variant that works with libbsd so far. DHCP and NFS work. NTP I added a primitive reader. This is sufficient for testing. You can find the development here: https://gitlab.fhi.mpg.de/junkes/epics-base.git It's not perfect yet. The adaptation

Re: [PATCH] libtest: Add T_thread_switch_record()

2020-08-10 Thread Gedare Bloom
On Mon, Aug 10, 2020 at 4:04 AM Sebastian Huber wrote: > > > On 10/08/2020 12:01, Sebastian Huber wrote: > > +#if defined(__GNUC__) || __STDC_VERSION__ >= 199409L > > +#define T_ZERO_LENGH_ARRAY > > +#define T_ZERO_LENGH_ARRAY_EXTENSION(n) (n) > > +#else > > +#define T_ZERO_LENGH_ARRAY 0 > This

Re: [PATCH] sb/bootstrap: Remove the sb-bootsrap command

2020-08-10 Thread Gedare Bloom
Please cleanup the doco too: rtems-docs$ grep -r sb-boot user/installation/developer.rst: $ /c/opt/rtems/rsb/source-builder/sb-bootstrap user/installation/kernel.rst: $ ./bootstrap -c && $HOME/development/rtems/rsb/source-builder/sb-bootstrap eclipse/rtems.rst:the RSB's `sb-bootstrap` to run the

Need help understand how the scheduler table entries work

2020-08-10 Thread Richi Dubey
Hi, I want your help to figure out how the table entries for a scheduler work. For STRONG_APA scheduler, the flow is : link

Re: [PATCH] libtest: Add T_thread_switch_record()

2020-08-10 Thread Sebastian Huber
On 10/08/2020 12:01, Sebastian Huber wrote: +#if defined(__GNUC__) || __STDC_VERSION__ >= 199409L +#define T_ZERO_LENGH_ARRAY +#define T_ZERO_LENGH_ARRAY_EXTENSION(n) (n) +#else +#define T_ZERO_LENGH_ARRAY 0 This should be #define T_ZERO_LENGH_ARRAY 1 +#define

[PATCH] libtest: Add T_thread_switch_record()

2020-08-10 Thread Sebastian Huber
Add support to record thread switch events. This can be use to check that a blocking operation results in the expected sequence of thread switches. Update #3199. --- cpukit/include/rtems/test.h | 45 +++ cpukit/libtest/t-test-thread-switch.c | 165 ++

Re: [PATCH] common: Remove probably superfluous import

2020-08-10 Thread Chris Johns
On 10/8/20 6:48 pm, Sebastian Huber wrote: > On 10/08/2020 10:41, Chris Johns wrote: > >> On 8/7/20 2:33 pm, Sebastian Huber wrote: >>> On 08/07/2020 03:11, Chris Johns wrote: >>> On 7/7/20 3:29 pm, Sebastian Huber wrote: > The purpose of this import is unclear. > > This import

Re: [PATCH] common: Remove probably superfluous import

2020-08-10 Thread Sebastian Huber
On 10/08/2020 10:41, Chris Johns wrote: On 8/7/20 2:33 pm, Sebastian Huber wrote: On 08/07/2020 03:11, Chris Johns wrote: On 7/7/20 3:29 pm, Sebastian Huber wrote: The purpose of this import is unclear. This import caused the following error with Sphinx 3.0: Extension error: Could not

Re: [PATCH] common: Remove probably superfluous import

2020-08-10 Thread Chris Johns
On 8/7/20 2:33 pm, Sebastian Huber wrote: > On 08/07/2020 03:11, Chris Johns wrote: > >> On 7/7/20 3:29 pm, Sebastian Huber wrote: >>> The purpose of this import is unclear. >>> >>> This import caused the following error with Sphinx 3.0: >>> >>> Extension error: >>> Could not import extension

[PATCH] sb/bootstrap: Remove the sb-bootsrap command

2020-08-10 Thread chrisj
From: Chris Johns Closes #4046 --- source-builder/sb-bootstrap| 27 --- source-builder/sb/bootstrap.py | 273 - source-builder/sb/cmd-bootstrap.py | 29 --- 3 files changed, 329 deletions(-) delete mode 100755 source-builder/sb-bootstrap delete mode

[PATCH] sb/builder: Remove sb-builder command

2020-08-10 Thread chrisj
From: Chris Johns Closes #4045 --- source-builder/sb-builder| 27 --- source-builder/sb/cmd-builder.py | 29 - 2 files changed, 56 deletions(-) delete mode 100755 source-builder/sb-builder delete mode 100755

Re: [PATCH] sb/track: Add a command to track build sets.

2020-08-10 Thread Chris Johns
On 10/8/20 4:12 pm, chr...@rtems.org wrote: > From: Chris Johns > > - Process a build set for a range of hosts and output a dependency > tree, the used build set and configuration files. > - Output the configuration files that are no referenced > > Closes #4044 This should be #4036 and #4044

[PATCH] sb/track: Add a command to track build sets.

2020-08-10 Thread chrisj
From: Chris Johns - Process a build set for a range of hosts and output a dependency tree, the used build set and configuration files. - Output the configuration files that are no referenced Closes #4044 --- bare/config/devel/libusb-1.0.18-1.cfg | 3 +