[PATCH 1/2] xz/xz_config.h: Define __always_inline to inline to avoid warnings

2017-04-05 Thread Joel Sherrill
--- cpukit/libmisc/xz/xz_config.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/cpukit/libmisc/xz/xz_config.h b/cpukit/libmisc/xz/xz_config.h index eb9dac1..bb595a3 100644 --- a/cpukit/libmisc/xz/xz_config.h +++ b/cpukit/libmisc/xz/xz_config.h @@ -62,6 +62,11 @@ typedef unsigned char b

[PATCH 2/2] xz/xz_crc64.c: Add prototypes to fix warnings

2017-04-05 Thread Joel Sherrill
--- cpukit/libmisc/xz/xz_crc64.c | 5 + 1 file changed, 5 insertions(+) diff --git a/cpukit/libmisc/xz/xz_crc64.c b/cpukit/libmisc/xz/xz_crc64.c index ca1caee..d8cef37 100644 --- a/cpukit/libmisc/xz/xz_crc64.c +++ b/cpukit/libmisc/xz/xz_crc64.c @@ -12,6 +12,11 @@ #include "xz_private.h"

[PATCH 0/2] xz Warning Removal Patches

2017-04-05 Thread Joel Sherrill
Hi I tried to take a direct and minimal approach to removing the warnings in xz that appear in every BSP build. I used the rule of only adding lines. Joel Sherrill (2): xz/xz_config.h: Define __always_inline to inline to avoid warnings xz/xz_crc64.c: Add prototypes to fix warnings cpukit/li

Re: [PATCH 0/2] xz Warning Removal Patches

2017-04-05 Thread Gedare Bloom
Is the upstream active? On Wed, Apr 5, 2017 at 1:06 PM, Joel Sherrill wrote: > Hi > > I tried to take a direct and minimal approach to removing > the warnings in xz that appear in every BSP build. I used > the rule of only adding lines. > > Joel Sherrill (2): > xz/xz_config.h: Define __always_i

Re: [PATCH 2/2] xz/xz_crc64.c: Add prototypes to fix warnings

2017-04-05 Thread Gedare Bloom
On Wed, Apr 5, 2017 at 1:06 PM, Joel Sherrill wrote: > --- > cpukit/libmisc/xz/xz_crc64.c | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/cpukit/libmisc/xz/xz_crc64.c b/cpukit/libmisc/xz/xz_crc64.c > index ca1caee..d8cef37 100644 > --- a/cpukit/libmisc/xz/xz_crc64.c > +++ b/cpukit/l

Re: [PATCH 0/2] xz Warning Removal Patches

2017-04-05 Thread Joel Sherrill
Chris merged this code in Oct 2016 from http://git.tukaani.org/xz-embedded.git per the README. I had to drop it down to http://git.tukaani.org to avoid an error. Per http://git.tukaani.org/?p=xz-embedded.git;a=summary, there have been no commits since Nov 2015. So I think the answer from our persp

Anyone used expat or libxml2 on RTEMS?

2017-04-05 Thread Joel Sherrill
Hi Looking to see if anyone has used either of these libraries on RTEMS. If so, if you have build instructions, it would be appreciated. Thanks. --joel ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

[PATCH 4/7] Updating FREEBSD for tty support

2017-04-05 Thread Kevin Kirspel
--- freebsd/sys/fs/devfs/devfs_int.h | 2 +- freebsd/sys/kern/kern_conf.c | 16 -- freebsd/sys/kern/subr_taskqueue.c | 10 --- freebsd/sys/kern/tty.c| 62 +++ freebsd/sys/kern/tty_ttydisc.c| 2 ++ freebsd/sys/sys/conf.h

[PATCH 3/7] Updating STTY command for use in RTEMS shell

2017-04-05 Thread Kevin Kirspel
--- freebsd/bin/stty/cchar.c | 9 ++ freebsd/bin/stty/gfmt.c | 6 freebsd/bin/stty/key.c | 9 ++ freebsd/bin/stty/modes.c | 9 ++ freebsd/bin/stty/print.c | 9 ++ freebs

[PATCH 2/7] Adding tty support files from FREEBSD tree

2017-04-05 Thread Kevin Kirspel
--- freebsd/sys/kern/tty.c | 2349 freebsd/sys/kern/tty_inq.c | 497 + freebsd/sys/kern/tty_outq.c| 347 ++ freebsd/sys/kern/tty_ttydisc.c | 1267 ++ freebsd/sys/sys/cons.h | 144 +++ freebsd/sys/sy

[PATCH 5/7] Adding RTEMS support for FREEBSD TTY

2017-04-05 Thread Kevin Kirspel
--- rtemsbsd/include/machine/rtems-bsd-commands.h | 2 + rtemsbsd/include/machine/rtems-bsd-kernel-space.h | 1 + rtemsbsd/include/rtems/bsd/local/opt_gdb.h| 1 + rtemsbsd/include/rtems/netcmds-config.h | 2 + rtemsbsd/rtems/rtems-bsd-shell-stty.c | 40 ++

[PATCH 1/7] Adding stty command files from FREEBSD tree

2017-04-05 Thread Kevin Kirspel
--- freebsd/bin/stty/cchar.c | 142 ++ freebsd/bin/stty/extern.h | 45 +++ freebsd/bin/stty/gfmt.c | 129 freebsd/bin/stty/key.c| 296 ++ freebsd/bin/stty/modes.c | 248 +++

[PATCH 6/7] Adding test cases for FREEBSD termios support through tty

2017-04-05 Thread Kevin Kirspel
--- .../include/rtems/bsd/test/default-termios-init.h | 158 testsuite/termios/test_main.c | 856 + testsuite/termios/test_termios_driver.c| 136 testsuite/termios/test_termios_driver.h| 32 + testsuite/termios/test_termi

[PATCH 7/7] Updating scripts for FREEBSD TTY support

2017-04-05 Thread Kevin Kirspel
--- libbsd.py | 77 --- libbsd_waf.py | 97 +++ 2 files changed, 163 insertions(+), 11 deletions(-) mode change 100755 => 100644 libbsd.py diff --git a/libbsd.py b/libbsd.py old mode 100755 ne

RTEMS 4.11.2-rc3 Release

2017-04-05 Thread Chris Johns
Hello, RTEMS 4.11.2-rc3 is available for testing. If you are using RTEMS 4.11.1 we encourage you to test and report any issues before the release date of 12th April 2017. I have moved the release date to give more time to see if the sync.rtems.org upgrade issues can be resolved. The release

Re: [PATCH 1/7] Adding stty command files from FREEBSD tree

2017-04-05 Thread Sebastian Huber
I updated the FreeBSD baseline two days ago. Is this patch series based on this version? -- 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...@embedded-brains.de PGP :

Re: [PATCH 0/2] xz Warning Removal Patches

2017-04-05 Thread Sebastian Huber
I think the main issue is: Support for 64-bit CRC is build although XZ_USE_CRC64 is not defined https://devel.rtems.org/ticket/2909 On 05/04/17 19:06, Joel Sherrill wrote: Hi I tried to take a direct and minimal approach to removing the warnings in xz that appear in every BSP build. I used th

Re: Anyone used expat or libxml2 on RTEMS?

2017-04-05 Thread Christian Mauderer
Am 05.04.2017 um 22:58 schrieb Joel Sherrill: > Hi > > Looking to see if anyone has used either of > these libraries on RTEMS. If so, if you have > build instructions, it would be appreciated. > > Thanks. > > --joel > > > ___ > devel mailing list > d