Re: [RSB PATCH] Added qemu 4.1.0 as bare target

2019-08-19 Thread Chris Johns
On 20/8/19 6:53 am, Jiri Gaisler wrote: > This patch will add QEMU-4.1.0 as RSB target devel/qemu4. Looks good. > The current devel/qemu target will be preserved. Should devel/qemu just point to qemu4? I am OK with this happening. > Builds and installs fine on ubuntu 18.04 x86_64. Build

Re: [PATCH v2] Add JSON log generation

2019-08-19 Thread Chris Johns
On 20/8/19 2:13 am, Kinsey Moore wrote: > Add log formatter hooks and JSON log formatter to the test infrastructure > for consumption by automated processes or report generators. > --- > tester/rt/test.py | 84 > +++ > 1 file changed, 84

Re: RTEMS Muilti-I/O lib is missing

2019-08-19 Thread Chris Johns
On 20/8/19 5:12 am, Christian Mauderer wrote: > On 19/08/2019 00:35, Chris Johns wrote: >> On 18/8/19 3:53 am, Joel Sherrill wrote: >>> >>> >>> On Fri, Aug 16, 2019, 8:43 PM Chris Johns >> > wrote: >>> >>> On 17/8/19 7:02 am, Joel Sherrill wrote: >>> > FWIW the

[PATCH rtems-tools] leon3-qemu.ini for rtems-test needs custom parameters to work

2019-08-19 Thread Jiri Gaisler
The standard parameters for leon3-qemu bsp for rtems-test do not work - custom ones are needed. From fb2d18063958d26c016bed2a4880507c9d688d87 Mon Sep 17 00:00:00 2001 From: Jiri Gaisler Date: Mon, 19 Aug 2019 22:45:04 +0200 Subject: [PATCH] leon3-qemu.ini for rtems-test needs custom parameters

[RSB PATCH] Added qemu 4.1.0 as bare target

2019-08-19 Thread Jiri Gaisler
This patch will add QEMU-4.1.0 as RSB target devel/qemu4. The current devel/qemu target will be preserved. Builds and installs fine on ubuntu 18.04 x86_64. Build scripts might need tweaks for other platforms. A few patches are still pulled in, currently hosted on gaisler.org but could be moved

Re: RTEMS Muilti-I/O lib is missing

2019-08-19 Thread Christian Mauderer
On 19/08/2019 00:35, Chris Johns wrote: > On 18/8/19 3:53 am, Joel Sherrill wrote: >> >> >> On Fri, Aug 16, 2019, 8:43 PM Chris Johns > > wrote: >> >> On 17/8/19 7:02 am, Joel Sherrill wrote: >> > FWIW the repo is git clone git://git.rtems.org/multiio.git >>

[PATCH v2] Add JSON log generation

2019-08-19 Thread Kinsey Moore
Add log formatter hooks and JSON log formatter to the test infrastructure for consumption by automated processes or report generators. --- tester/rt/test.py | 84 +++ 1 file changed, 84 insertions(+) diff --git a/tester/rt/test.py

Re: [PATCH v2] Add steps to test Newlib patch.

2019-08-19 Thread Vaibhav Gupta
Is it okay to push it?? --Vaibhav Gupta On Fri, Aug 16, 2019 at 8:14 PM Vaibhav Gupta wrote: > Update the checksum to be used for the Newlib patches. > Earlier it was msd5, but it is depreciated for security > reasons. Now RSB accepts sha512. > --- > user/rsb/project-sets.rst | 41

[PATCH] TFTP Proxy

2019-08-19 Thread chrisj
Hi, This patch adds to rtems-tools a TFTP proxy. The proxy lets you point the boot loaders for a farm of devices at a single server and the proxy will farm out the requests to other ports and servers. This lets you run tests on other machines or use non-secure port numbers removing the need to

[PATCH] misc/tftpproxy: Add a proxy TFTP server.

2019-08-19 Thread chrisj
From: Chris Johns - Uses a config INI file to map clients to servers - Handle a number of requests to a single server's TFTP port (69) and multiplex to a non-su ports or different servers. - Supports running rtems-test to more than one hardware device using TFTP at once. ---