[PATCH] Update 3001 broke build for non SMP BSPs. Build failed when compiling default-configuration.c

2017-05-15 Thread Kevin Kirspel
--- cpukit/sapi/include/confdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 cpukit/sapi/include/confdefs.h diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h old mode 100755 new mode 100644 index 5cba1a8..06938b1 ---

Re: GSOC student suggestion about bug fixs

2017-05-15 Thread Gedare Bloom
Which bug / ticket number? Have you built and run a libbsd test? On Sat, May 13, 2017 at 10:23 PM, Sichen Zhao wrote: > > Hi all, > > > I am GSOC 2017 student Sichen Zhao > > I wanna ask whether the RTEMS-libbsd Bug is ok? And strictly speaking it's a > suggestion not a

Re: Offlist - Introduce Yourself to Community

2017-05-15 Thread aditya upadhyay
Hello All, I have ported the code of inttypes library and i have tested methods related to inttypes.h in hello world test. It is working. Then i made a separate test for psxinttypes01 in samples directory and it's also working. I made this test within the psxtests directory then how would i check

[PATCH 11/11] Update scripts to include support for input devices - USB Keyboard, USB mouse, touch, and EVDEV

2017-05-15 Thread Kevin Kirspel
--- libbsd.py | 79 +++ libbsd_waf.py | 43 2 files changed, 101 insertions(+), 21 deletions(-) diff --git a/libbsd.py b/libbsd.py index 3129266..de94304 100644 --- a/libbsd.py +++ b/libbsd.py @@ -151,6

[PATCH 09/11] Add keyboard driver set variable

2017-05-15 Thread Kevin Kirspel
--- rtemsbsd/rtems/rtems-kernel-init.c | 4 1 file changed, 4 insertions(+) diff --git a/rtemsbsd/rtems/rtems-kernel-init.c b/rtemsbsd/rtems/rtems-kernel-init.c index e647224..c42e35a 100644 --- a/rtemsbsd/rtems/rtems-kernel-init.c +++ b/rtemsbsd/rtems/rtems-kernel-init.c @@ -49,6 +49,9 @@

[PATCH 10/11] Add tests for USB keyboard and mouse as well as EVDEV

2017-05-15 Thread Kevin Kirspel
--- testsuite/evdev01/init.c| 764 testsuite/usbkbd01/init.c | 278 testsuite/usbmouse01/init.c | 283 3 files changed, 1325 insertions(+) create mode 100644 testsuite/evdev01/init.c create mode 100644

[PATCH 07/11] Add bitcount inlinesfor RTEMS. These are found in FREEBSDs types.h

2017-05-15 Thread Kevin Kirspel
--- freebsd/sys/sys/bitstring.h | 3 + rtemsbsd/include/machine/bitstring.h | 107 +++ 2 files changed, 110 insertions(+) create mode 100644 rtemsbsd/include/machine/bitstring.h diff --git a/freebsd/sys/sys/bitstring.h b/freebsd/sys/sys/bitstring.h

[PATCH 05/11] Modify FREEBSD USB keyboard drivers for use in RTEMS

2017-05-15 Thread Kevin Kirspel
--- freebsd/sys/dev/usb/input/ukbd.c| 6 ++ rtemsbsd/include/rtems/bsd/local/opt_kbd.h | 1 + rtemsbsd/include/rtems/bsd/local/opt_ukbd.h | 1 + 3 files changed, 8 insertions(+) create mode 100644 rtemsbsd/include/rtems/bsd/local/opt_kbd.h create mode 100644

[PATCH 08/11] Add LPC32XX touch screen driver

2017-05-15 Thread Kevin Kirspel
--- rtemsbsd/include/bsp/nexus-devices.h | 1 + rtemsbsd/include/machine/rtems-bsd-nexus-bus.h | 22 ++ rtemsbsd/sys/dev/input/touchscreen/tsc_lpc32xx.c | 403 +++ 3 files changed, 426 insertions(+) mode change 100755 => 100644

[PATCH 04/11] Add USB UGEN support for RTEMS

2017-05-15 Thread Kevin Kirspel
--- freebsd/sys/dev/usb/usb_dev.c | 10 ++ rtemsbsd/include/rtems/bsd/local/opt_usb.h | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/freebsd/sys/dev/usb/usb_dev.c b/freebsd/sys/dev/usb/usb_dev.c index fe249c2..da96a99 100644 ---

[PATCH 01/11] Adding EVDEV FREEBSD files

2017-05-15 Thread Kevin Kirspel
--- freebsd/sys/dev/evdev/cdev.c | 863 +++ freebsd/sys/dev/evdev/evdev.c | 939 ++ freebsd/sys/dev/evdev/evdev.h | 210 +++ freebsd/sys/dev/evdev/evdev_mt.c | 294 ++

[PATCH 06/11] Modify FREEBSD EVDEV driver for use in RTEMS

2017-05-15 Thread Kevin Kirspel
--- freebsd/sys/dev/evdev/evdev.c| 4 rtemsbsd/include/rtems/bsd/local/opt_evdev.h | 19 +++ 2 files changed, 23 insertions(+) create mode 100644 rtemsbsd/include/rtems/bsd/local/opt_evdev.h diff --git a/freebsd/sys/dev/evdev/evdev.c

[PATCH 02/11] Add FREEBSD keyboard driver files

2017-05-15 Thread Kevin Kirspel
--- freebsd/sys/dev/kbd/kbd.c | 1477 +++ freebsd/sys/dev/kbd/kbdreg.h| 307 freebsd/sys/dev/kbd/kbdtables.h | 238 +++ freebsd/sys/sys/kbio.h | 269 +++ 4 files changed, 2291 insertions(+) create mode 100644