On 2013-12-19 01:30, Chris Johns wrote:
On 17/12/2013 1:13 am, Sebastian Huber wrote:
Module:rtems
Branch:master
Commit:287bbb65afd24ffc6254ae5f328733213f184205
Changeset:
http://git.rtems.org/rtems/commit/?id=287bbb65afd24ffc6254ae5f328733213f184205
Author:Sebastian Huber
Date
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/WebSocket ) in the Mongoose HTTP server.
This was my first-time "having fun" (*ahem*) with autotools, so
hopefully I haven't stuffed it u
On 17/12/2013 1:13 am, Sebastian Huber wrote:
Module:rtems
Branch:master
Commit:287bbb65afd24ffc6254ae5f328733213f184205
Changeset:
http://git.rtems.org/rtems/commit/?id=287bbb65afd24ffc6254ae5f328733213f184205
Author:Sebastian Huber
Date: Fri Aug 30 17:43:16 2013 +0200
b
This is for the RFS file system. The statvfs call reports 1 block free when the
file system is full because it does not account for the superblock in its
calculation of free blocks.
This is a simple fix that adjusts the number of blocks reported to account for
the superblock. We may want to wai
This is for the RFS file system. There is a bug in the
rtems_rfs_bitmap_create_search loop. It is supposed to iterate over the range
of bits in a search element ( usually 32 bits ), so it should loop through bits
0 through 31. Instead it loops through 0 - 32, causing some blocks not to be
alloc
This is for the RFS file system. There is a bug in the group search algorithm
where it will skip groups, causing blocks to remain unallocated. This is
dependant on the size of the blocks and number of blocks in a group, so it does
not always show up. The fix corrects the skipping of groups durin
This is for RTEMS Source Builder. Binutils 2.23.x did not build on Ubuntu 13.10
because of texinfo 5.1. The problem is fixed in Binutils 2.24, so the check for
texinfo 5.x is no longer needed for this configuration.
---
rtems/config/tools/rtems-gcc-4.8.2-newlib-cvs-1.cfg | 5 -
1 file chang