Re: [PATCH] Teach rtems_tarfs_load() about symlinks

2014-12-02 Thread Sebastian Huber
On 03/12/14 07:07, Nick Withers wrote: Anyone be interested in committing this? On Fri, 2014-03-07 at 14:37 +1100, Nick Withers wrote: >Hi all, > >The attached patch teaches rtems_tarfs_load() about symlinks, as well as >making it fail if it encounters an unsupported tar file entry type >(e.g.

Re: Add an --enable-httpd-websocket configure option to enable WebSocket in the Mongoose HTTP server

2014-12-02 Thread Sebastian Huber
On 03/12/14 08:05, Nick Withers wrote: On Wed, 2014-12-03 at 07:48 +0100, Sebastian Huber wrote: >Hello Nick, > >what is the benefit of providing this WebSocket stuff? I personally use it to serve dynamic content to web clients. The callback mechanism that Mongoose provides allows me to hook t

Re: [PATCH] Correct a race condition between the e500 core decrementer wrapping and the tick interrupt being handled

2014-12-02 Thread Sebastian Huber
Hello Nick, to disable TCR[ARE] is not the right fix. You have to check the TSR[DIS] register in the nanoseconds extension. See for example lpc-clock-config.c for an example. -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47

Re: Add an --enable-httpd-websocket configure option to enable WebSocket in the Mongoose HTTP server

2014-12-02 Thread Nick Withers
On Wed, 2014-12-03 at 07:48 +0100, Sebastian Huber wrote: > Hello Nick, > > what is the benefit of providing this WebSocket stuff? I personally use it to serve dynamic content to web clients. The callback mechanism that Mongoose provides allows me to hook these requests into my application and re

Re: [PATCH] Move the flash size probe into bankValidate() - averts potential fatal exception

2014-12-02 Thread Sebastian Huber
I checked in this patch: http://git.rtems.org/rtems/commit/?id=fa4fe456b7f0c561e73477df59b2f9376f23b080 On 03/12/14 07:17, Nick Withers wrote: Ping:-) I*think* this particular one can be reviewed without PowerPC / flash-specific knowledge. -- Sebastian Huber, embedded brains GmbH Address :

Re: Add an --enable-httpd-websocket configure option to enable WebSocket in the Mongoose HTTP server

2014-12-02 Thread Sebastian Huber
Hello Nick, what is the benefit of providing this WebSocket stuff? On 03/12/14 07:10, Nick Withers wrote: On Thu, 2014-01-02 at 10:45 +1100, Nick Withers wrote: On Thu, 2013-12-19 at 15:38 +1100, Nick Withers wrote: Hi all, The attached patch adds an "--enable-httpd-websocket" configure opti

Re: [PATCH] libmisc: More useful default configuration

2014-12-02 Thread Sebastian Huber
On 03/12/14 00:18, Chris Johns wrote: On 2/12/2014 9:11 pm, Sebastian Huber wrote: The dummy.c is a de-facto default configuration so use unlimited objects and the stack checker. This makes it easier for new RTEMS users which will likely use this file if they just work with the usual main() fu

Re: [PATCH] Move the flash size probe into bankValidate() - averts potential fatal exception

2014-12-02 Thread Nick Withers
Ping :-) I *think* this particular one can be reviewed without PowerPC / flash-specific knowledge. -- Nick Withers Embedded Systems Programmer Department of Nuclear Physics, Research School of Physics and Engineering The Australian National University (CRICOS: 00120C) On Wed, 2014-02-12 at 10:1

Re: Add an --enable-httpd-websocket configure option to enable WebSocket in the Mongoose HTTP server

2014-12-02 Thread Nick Withers
On Thu, 2014-01-02 at 10:45 +1100, Nick Withers wrote: > On Thu, 2013-12-19 at 15:38 +1100, Nick Withers wrote: > > Hi all, > > > > The attached patch adds an "--enable-httpd-websocket" configure option > > to enable WebSocket (see http://www.websocket.org , > > http://en.wikipedia.org/wiki/WebSoc

Re: [PATCH] Teach rtems_tarfs_load() about symlinks

2014-12-02 Thread Nick Withers
Anyone be interested in committing this? On Fri, 2014-03-07 at 14:37 +1100, Nick Withers wrote: > Hi all, > > The attached patch teaches rtems_tarfs_load() about symlinks, as well as > making it fail if it encounters an unsupported tar file entry type > (e.g., hard links) rather than silently ign

Re: [PATCH] Correct a race condition between the e500 core decrementer wrapping and the tick interrupt being handled

2014-12-02 Thread Nick Withers
Just a ping... I reckon It'd be nice to get this in before 4.11 :-) On Fri, 2014-11-14 at 12:08 +1100, Nick Withers wrote: > Hi all, > > Please find attached a patch to close a race between the e500 PowerPC > decrementer wrapping and the associated tick interrupt handler doing its > thing. > >

Re: [PATCH] more data structures public in mongoose.h

2014-12-02 Thread Ben Gras
Hi Nick & rtems-devel, I could've sworn I needed the struct mg_connection declaration even to just declare a function with its argument - but just to verify I tried it again and I'm fine. So, for now, I'm retracting the patch. Thanks for the tip! On Thu, Nov 20, 2014 at 2:15 AM, Nick Withers w

Re: [PATCH 2/2] i386: doxygen and comments related to VESA real mode framebuffer

2014-12-02 Thread Gedare Bloom
Sometimes params are identified as in our out, sometimes they are not. Please be consistent. Generally patch looks OK, does the doxygen look right when applied? [1] can help -Gedare [1] https://github.com/joelsherrill/gci_tasks/blob/master/2013/doxygen_c_header_tasks/validate/do_doxygen On Tue,

Re: [PATCH 1/2] i386/pc386: cammelCase to underscores, typedefed structs, break >80 chars lines, removed newlines at EOFs

2014-12-02 Thread Gedare Bloom
Quick Notes: * struct and function names still use camelCase, these are the real problem, local variables are less important really. * Use EDID not Edid * Is some of this supposed to be called from user applications? Most (all?) "user-facing" APIs in RTEMS use all lowercase function and type names.

Re: [PATCH] libmisc: More useful default configuration

2014-12-02 Thread Chris Johns
On 2/12/2014 9:11 pm, Sebastian Huber wrote: The dummy.c is a de-facto default configuration so use unlimited objects and the stack checker. This makes it easier for new RTEMS users which will likely use this file if they just work with the usual main() function as the application entry point.

[PATCH] fix for default configuration for pc386 bsp

2014-12-02 Thread Ben Gras
All, If USE_VBE_RM is not on, vesa_realmode_bootup_init shouldn't be referenced, but it's always defined, so the test shoudl be #if instead of #ifdef. From 97c14a7558671826bf21f323f7ee593f3e311e15 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 2 Dec 2014 23:36:59 +0100 Subject: [PATCH] pc386

[PATCH 1/2] i386/pc386: cammelCase to underscores, typedefed structs, break >80 chars lines, removed newlines at EOFs

2014-12-02 Thread Jan Dolezal
applies to files related to VESA real mode framebuffer --- c/src/lib/libbsp/i386/pc386/console/fb_vesa_rm.c | 251 +++-- c/src/lib/libbsp/i386/pc386/include/edid.h | 86 +++ c/src/lib/libbsp/i386/pc386/include/fb_vesa.h | 38 ++-- c/src/lib/libbsp/i386/pc386/in

[PATCH 2/2] i386: doxygen and comments related to VESA real mode framebuffer

2014-12-02 Thread Jan Dolezal
--- c/src/lib/libbsp/i386/pc386/console/fb_vesa_rm.c | 105 --- c/src/lib/libbsp/i386/pc386/include/edid.h | 14 +- c/src/lib/libbsp/i386/pc386/include/fb_vesa.h | 74 ++--- c/src/lib/libbsp/i386/pc386/include/tblsizes.h | 1 - c/src/lib/libbsp/i386/pc386/include/vbe3.h

[PATCH] libmisc: More useful default configuration

2014-12-02 Thread Sebastian Huber
The dummy.c is a de-facto default configuration so use unlimited objects and the stack checker. This makes it easier for new RTEMS users which will likely use this file if they just work with the usual main() function as the application entry point. --- cpukit/libmisc/dummy/dummy.c | 4 +++- 1 fi

[PATCH] libtests: Omit libdl tests if no RTEMS tools

2014-12-02 Thread Sebastian Huber
--- testsuites/libtests/configure.ac | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/testsuites/libtests/configure.ac b/testsuites/libtests/configure.ac index f8eb272..53a017b 100644 --- a/testsuites/libtests/configure.ac +++ b/testsuites/libtests/configure.ac @