Timeline



11/18/17:

16:19 Changeset in rtems [8d7f3680]5 by Sebastian Huber <sebastian.huber@…>
libblock: Use self-contained mutex and cond var Update #2843.
15:52 Changeset in rtems [1b2da177]5 by Sebastian Huber <sebastian.huber@…>
libblock: Use self-contained mutex for disk lock Update #2843.
06:01 Changeset in rtems [1737e8f]5 by Andrei Chichak <andrei@…>
libmisc/stackchk/check.c: correct formatting of stack pointers in Stack_check_Dump_threads_usage Pointers were being printed as 0x<decimal> rather than 0x<hex>. I altered the formatting define used to give the correct formatting. Close #3240
05:32 Ticket #3240 (cpukit/libmisc/stackchk/check.c stack addresses formatted incorrectly.) created by Andrei Chichak
The function Stack_check_Dump_threads_usage displays the stack high, …
00:33 WikiStart edited by Chris Johns
FIx 4.11.2 documentation link. (diff)
00:33 Release edited by Chris Johns
FIx 4.11.2 documentation link. (diff)

11/17/17:

13:23 Changeset in rtems-libbsd [9569b39]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
at91_mci: Fix for 32k buffer.
12:46 Changeset in rtems-docs [e2a1a3a]5 by Sebastian Huber <sebastian.huber@…>
c-user: Clarify rtems_interrupt_flash()
12:32 Changeset in rtems-docs [6efb6fa]5 by Sebastian Huber <sebastian.huber@…>
c-user: Remove clock driver specific functions Do not mention functions which belong to a specific clock driver implementation. These functions should not be called by applications directly.
09:49 Changeset in rtems-libbsd [c360b1a]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Revert "RWLOCK(9): Add reader/writer lock implementation" This was accidentally committed. This reverts commit 97a98f6cd767b3a68279890488c7b451788f84f4.
09:49 Changeset in rtems-libbsd [b5822c2]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Revert "SX(9): Implement with reader/writer lock" This was accidentally committed. This reverts commit cc7a8d87e7307db738bf39ab1ca3ce1053f1c163.
08:43 Changeset in rtems [3d374d9]5 by Sebastian Huber <sebastian.huber@…>
bsps: Use a state in default getentropy() Use the boot time to initialize the state. Use the state, the current CPU counter and a very simple pseudo random number generator for getentropy(). At least, this enables to pass the test "GETENTROPY 1" on ERC32. Update #3239.
08:21 Changeset in rtems [d00a7d1c]5 by Christian Mauderer <Christian.Mauderer@…>
bsp/atsam: Move clock and SDRAM init to SRAM. If necessary, the BSP can now have it's clock and SDRAM initialization in the SRAM instead of the SDRAM. This allows to change the clock frequency during the startup of an SDRAM application.
06:58 Ticket #3239 (Add getentropy() implementation provided by each BSP) closed by Sebastian Huber <sebastian.huber@…>
fixed: In baf9824/rtems-docs: […]
06:58 Changeset in rtems-docs [baf9824]5 by Sebastian Huber <sebastian.huber@…>
Document INTERNAL_ERROR_ARC4RANDOM_GETENTROPY_FAIL Close #3239.
06:57 Changeset in rtems-docs [5531f02]5 by Sebastian Huber <sebastian.huber@…>
INTERNAL_ERROR_ILLEGAL_USE_OF_FLOATING_POINT_UNIT
06:26 Ticket #3239 (Add getentropy() implementation provided by each BSP) created by Sebastian Huber
The getentropy() system call was introduced by OpenBSD and is now also …
05:36 Changeset in rtems [a7dcef97]5 by Sebastian Huber <sebastian.huber@…>
score: Simplify global construction Update #3243.

11/16/17:

20:42 Ticket #3238 (Git push to Trac with more than one commit does not update tickets.) created by Chris Johns
The git push to trac hook does not queue or handle a number of commits …
15:46 Changeset in rtems [4d7e4bb]5 by Daniel Hellstrom <daniel@…>
leon, gr1553rt: adding SMP protection Add device spin-lock around internal data structures. Since the driver provides a low-level C API accessing the descriptors the application still needs to implement part of the SMP synchonization needed between Interrupt handler and tasks. Close #2355.
15:01 Changeset in rtems-docs [d0b961a]5 by Christian Mauderer <Christian.Mauderer@…>
bsp-howto: Add getentropy. Update #3239.
14:29 Ticket #3237 (Fix priority ceiling updates) closed by Sebastian Huber <sebastian.huber@…>
fixed: In ec771f2/rtems: […]
14:26 Changeset in rtems [e24d64b]5 by Sebastian Huber <sebastian.huber@…>
psx05: Remove CONFIGURE_DISABLE_SMP_CONFIGURATION Update #3020.
14:25 Ticket #3237 (Fix priority ceiling updates) created by Sebastian Huber
We must not clear the priority updates in …
14:04 Changeset in rtems [ec771f2]5 by Sebastian Huber <sebastian.huber@…>
score: Fix priority ceiling updates We must not clear the priority updates in _Thread_queue_Extract_locked() since this function is used by the priority ceiling surrender operations after the ceiling priority handover from the previous owner to the new owner. This is especially important in SMP configurations. Move the _Thread_queue_Context_clear_priority_updates() invocation to the callers. Close #3237.
13:41 Ticket #3236 (Fix thread queue owner priority update in _Thread_queue_Flush_critical()) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 9c30c31e/rtems: […]
13:40 Ticket #3235 (Fix rtems_semaphore_flush() for priority inheritance semaphores) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 79a998d/rtems: […]
13:38 Changeset in rtems [9c30c31e]5 by Sebastian Huber <sebastian.huber@…>
score: Fix _Thread_queue_Flush_critical() The thread queue extract operations performed by the _Thread_queue_Flush_critical() may result in a priority change of the thread queue owner. Carry out the scheduler priority update operation. This is especially important in SMP configurations. Close #3236.
13:37 Ticket #3236 (Fix thread queue owner priority update in _Thread_queue_Flush_critical()) created by Sebastian Huber
The thread queue extract operations performed by the …
13:08 Changeset in rtems [79a998d]5 by Sebastian Huber <sebastian.huber@…>
rtems: rtems_semaphore_flush() with prio inherit The _Semaphore_Get_operations() must return the proper operations for priority inheritance semaphores. Add a test case for rtems_semaphore_flush() with priority inheritance. Close #3235.
13:08 Ticket #3235 (Fix rtems_semaphore_flush() for priority inheritance semaphores) created by Sebastian Huber
The _Semaphore_Get_operations() must return the proper operations for …
09:29 Changeset in rtems-docs [d9ecff1]5 by Sebastian Huber <sebastian.huber@…>
c-users: Clarify semaphore obtain/flush
09:12 Developer/Release edited by Sebastian Huber
(diff)
07:17 Changeset in rtems-libbsd [344b8e6]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
LOCKING(9): Remove dead code (DDB)
07:15 Changeset in rtems-libbsd [3f23fcd]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
LOCKING(9): Remove dead code (KDTRACE_HOOKS)
06:17 Changeset in rtems [888da71]5 by Sebastian Huber <sebastian.huber@…>
score: Check thread resource count in timer server The watchdog routines invoked by the timer server may use mutexes for synchronization. Ensure that the resource count of the timer server is zero after each watchdog routine invocation. This helps to detect broken watchdog routines.
05:16 Changeset in rtems [727cf48]5 by Sebastian Huber <sebastian.huber@…>
sptests/spversion01: Simplify configuration Update #3199.
01:04 Changeset in rtems-docs [c6066d4]5 by Martin Erik Werner <martinerikwerner@…>
bsp-howto/console: Move misplaced var. in example Signed-off-by: Martin Erik Werner <martinerikwerner@…>

11/15/17:

12:24 Changeset in rtems-libbsd [b03a1c0]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Fix file descriptor reference counting in accept() Update #3132.
12:21 Changeset in rtems [d4b99ae3]5 by Sebastian Huber <sebastian.huber@…>
libio: Add assert to rtems_libio_iop_drop() This assert helps to detect an invalid reference counting in RTEMS_DEBUG configurations. Update #3132.
10:49 Changeset in rtems-libbsd [cc7a8d8]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
SX(9): Implement with reader/writer lock
06:55 Changeset in rtems [62119d2]5 by Sebastian Huber <sebastian.huber@…>
dl01, dl02, dl05: Fix unresolved printf symbol The link time wrap of printf leads to unresolved symbols in the loadable modules. This resulted in infinite loops and test timeouts. Use rtems_printf() for output. Update #3199.

11/14/17:

18:35 Ticket #3234 (Quick Start Instructions Inconsistent) closed by Joel Sherrill
invalid: Must have misread the documentation.
18:28 Ticket #3234 (Quick Start Instructions Inconsistent) created by Joel Sherrill
In section 5 of the User's Manual, the clone of rtems-source-builder …
12:06 Changeset in rtems-libbsd [9c1490a]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
LOCKING(9): Update to current FreeBSD version
11:57 Changeset in rtems-libbsd [97a98f6]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
RWLOCK(9): Add reader/writer lock implementation
11:45 Changeset in rtems [72273b6]5 by David Gibson <david@…>
libfdt: Safer access to strings section fdt_string() is used to retrieve strings from a DT blob's strings section. It's rarely used directly, but is widely used internally. However, it doesn't do any bounds checking, which means in the case of a corrupted blob it could access bad memory, which libfdt is supposed to avoid. This write a safe alternative to fdt_string, fdt_get_string(). It checks both that the given offset is within the string section and that the string it points to is properly \0 terminated within the section. It also returns the string's length as a convenience (since it needs to determine to do the checks anyway). fdt_string() is rewritten in terms of fdt_get_string() for compatibility. Most of the diff here is actually testing infrastructure. Signed-off-by: David Gibson <david@…> Tested-by: Alexey Kardashevskiy <aik@…> Reviewed-by: Alexey Kardashevskiy <aik@…>
00:57 Changeset in rtems [631f711]5 by Chris Johns <chrisj@…>
build: Fix the dependence for the generating the key file. Update #3217.

11/13/17:

09:01 Ticket #3170 (Use BSP_output_char via RTEMS printer or simple console driver for ...) closed by Sebastian Huber
fixed
08:21 Changeset in rtems [a9de9a7]5 by Christian Mauderer <Christian.Mauderer@…>
bsp/atsam: Add getentropy(). Update #3239.
08:21 Changeset in rtems [1358d4c]5 by Christian Mauderer <Christian.Mauderer@…>
getentropy: Add test. Update #3239.
08:21 Changeset in rtems [ca4895c]5 by Christian Mauderer <Christian.Mauderer@…>
getentropy: Add cpu counter based implementation. Update #3239.
08:21 Changeset in rtems [ddc339c]5 by Christian Mauderer <Christian.Mauderer@…>
cpukit: Add _arc4random_getentropy_fail. Add a default implementation of _arc4random_getentropy_fail with an internal error. Update #3239.
02:25 Changeset in rtems-docs [3384994]5 by Chris Johns <chrisj@…>
Clean up sphinx warnings. - Fix minor formatting issues. - Fix reference the gloassary TLS using ':term:'. - Make sure nothing is between an anchor and the heading where ':ref:' references the anchor. This meant moving all the recently added '.. index::' entries. Update #3232. Update #3229.
00:54 Ticket #3232 (Use of `.. include::` in the User Manual should be changed.) closed by Chris Johns <chrisj@…>
fixed: In ac0eaff/rtems-docs: […]
00:51 Changeset in rtems-docs [ac0eaff]5 by Chris Johns <chrisj@…>
Use '.. toctree::' and not '.. include::' in the User Manual. - Change all suitable '.. include::' to TOC tree. - Remove unused and not needed sections. - Fix the conf.py to not exclude some files. Close #3232.
00:47 Ticket #3233 (Documentation has a number of warning that need fixing.) created by Chris Johns
Adding --sphinx-verbose="-v" to the configure command line will …

11/12/17:

23:04 Ticket #3232 (Use of `.. include::` in the User Manual should be changed.) created by Chris Johns
This tricket for Sphinx highlights an issue when using .. include::, …
16:04 Ticket #3228 (aarch64 missing from 5/rtems-all build set) closed by Joel Sherrill
fixed
15:54 Ticket #3227 (sb-check fails on Msys2 64-bit) reopened by Joel Sherrill
Wrong ticket closed
15:53 Ticket #3227 (sb-check fails on Msys2 64-bit) closed by Joel Sherrill <joel@…>
fixed: In d1e6dfc/rtems-source-builder: […]
15:50 Changeset in rtems-source-builder [d1e6dfc]5 by Joel Sherrill <joel@…>
5/rtems-all.bset: Add missing aarch64 closes #3227.
14:39 Changeset in rtems [f5b3c024]5 by Martin Erik Werner <martinerikwerner@…>
Fix bashism in vc-key.sh Change "==" to "=", since "==" for comparison is not available in POSIX sh. Signed-off-by: Martin Erik Werner <martinerikwerner@…>
05:05 Ticket #3231 (RTEMS Top level README needs updating.) created by Chris Johns
- Add markdown header. - Does the release process add a VERSION file …
04:45 Ticket #3230 (RSB does not report --rsb-file for patches correctly.) created by Chris Johns
The reports from the RSB do not report the --rsb-file option correctly.
03:34 Changeset in rtems-docs [6c56401]5 by Chris Johns <chrisj@…>
c-user: Fix index locations. Update #3229.

11/11/17:

23:32 Changeset in rtems-docs [42d50d7]5 by Chris Johns <chrisj@…>
Add indexes to all documents. Update #3229.
23:08 Ticket #3229 (Add index to all documents.) created by Chris Johns
Indexes currently do not work. Fix this adding them to all documents. …
01:51 Ticket #3228 (aarch64 missing from 5/rtems-all build set) created by Chris Johns
This arch needs to be added to the all build set.

11/10/17:

20:24 Changeset in rtems [a6bf052]5 by Joel Sherrill <joel@…>
mvme162: Fix errors tripped by transition to using polled IO for tests
20:23 Changeset in rtems [cba8970e]5 by Joel Sherrill <joel@…>
mcf5206elite/include/bsp.h: Rename delay() to rtems_bsp_delay() to avoid conflicts
20:22 Changeset in rtems [52841b58]5 by Joel Sherrill <joel@…>
csb360/include/bsp.h: Rename delay() to rtems_bsp_delay() to avoid conflicts
16:13 Ticket #3227 (sb-check fails on Msys2 64-bit) created by Joel Sherrill
There must be a recent change to msys2 which is breaking things. I …
15:21 Changeset in rtems [91a2d5e]5 by Sebastian Huber <sebastian.huber@…>
score: Adjust _Scheduler_EDF_SMP_Insert_ready() Use only one parameter to compute the next generation. Use index 0 for LIFO ordering, and index 1 for FIFO ordering.
13:19 Changeset in rtems-libbsd [06f06d4]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Fix warning
13:04 Changeset in rtems-libbsd [4525674]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
tcpdump: Fix import/export
12:32 Changeset in rtems-libbsd [847de24]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Fix build for non-FDT platforms
10:53 Changeset in rtems-libbsd [896f068]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
tests/syscalls01: Fix shutdown() test The socket must be connected for a shutdown().
10:48 Changeset in rtems-libbsd [23cd284]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Add rtems_bsd_ifconfig_lo0()
10:17 Changeset in rtems-libbsd [eeeda4b]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
tests/syscall01: Update error values FreeBSD changed the error values.
10:15 Changeset in rtems-libbsd [057656b]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Disable HHOOK(9) support for sockets Support was only partly disabled leading to NULL pointer accesses. Disable it completely.
10:01 Changeset in rtems-libbsd [72d5fa1]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Fix reference counting for file descriptors Update #3132.
09:09 Changeset in rtems-source-builder [8b30eb3]5 by Sebastian Huber <sebastian.huber@…>
5: Update to special MIPS GDB to 8.0.1
09:07 Ticket #3226 (gdb: pr 16827, fix sim on Mavrick) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 831bc7e/rtems-source-builder: […]
08:54 Changeset in rtems-source-builder [831bc7e]5 by Sebastian Huber <sebastian.huber@…>
5: Avoid rtems-tools for epiphany GDB Close #3226.
08:48 Ticket #3226 (gdb: pr 16827, fix sim on Mavrick) created by Sebastian Huber
08:42 Changeset in rtems-tools [3a32d15]5 by Sebastian Huber <sebastian.huber@…>
Add tool patches warning Update #2949.
08:38 Changeset in rtems-tools [9f34b38]5 by Sebastian Huber <sebastian.huber@…>
Remove tools/5 patches Update #3220.
08:36 Ticket #3225 (Upgrade m32c to GDB 8.0.1) closed by Sebastian Huber <sebastian.huber@…>
fixed: In d20f4df/rtems-source-builder: […]
08:34 Changeset in rtems-source-builder [ebe0053]5 by Sebastian Huber <sebastian.huber@…>
5: Use custome GDB 7.11 without for or1k Do not include aarch64 and SPARC patches.
08:33 Changeset in rtems-source-builder [d20f4df]5 by Sebastian Huber <sebastian.huber@…>
5: Upgrade m32c to GDB 8.0.1 Close #3225.
08:33 Ticket #3225 (Upgrade m32c to GDB 8.0.1) created by Sebastian Huber
08:17 Ticket #3224 (Upgrade or1k and m32c to Binutils 2.29) closed by Sebastian Huber <sebastian.huber@…>
fixed: In dbe55c3/rtems-source-builder: […]
08:13 Ticket #3224 (Upgrade or1k and m32c to Binutils 2.29) created by Sebastian Huber
07:50 Changeset in rtems-source-builder [dbe55c3]5 by Sebastian Huber <sebastian.huber@…>
5: Use Binutils 2.29 for or1k and m32c This avoids Binutils patches from rtems-tools. Close #3224.
07:39 Changeset in rtems [cb40687]5 by Sebastian Huber <sebastian.huber@…>
Change RTEMS_API from 5.0 to 5 This fixes the legacy Makefile based build system which expects RTEMS_API to be identical to the tool chain version. Update #3220.
07:31 Changeset in rtems-source-builder [33f1deb]5 by Sebastian Huber <sebastian.huber@…>
5: Use ticket attachment for automake patch Update #2616.

11/09/17:

22:52 Developer/Release edited by Chris Johns
Minor fixes to the Release number description. (diff)
22:19 Release/4.12 edited by Chris Johns
Add a note about the change of the major release number. (diff)
21:06 Changeset in rtems [748a126]5 by Joel Sherrill <joel@…>
pppd/Makefile.am: Add support/include
15:21 Changeset in rtems [c597fb1]5 by Sebastian Huber <sebastian.huber@…>
score: Optimize scheduler priority updates Thread priority changes may append or prepend the thread to its priority group on the scheduler ready queue. Previously, a separate priority value and a prepend-it flag in the scheduler node were used to propagate a priority change to the scheduler. Now, use an append-it bit in the priority control and reduce the plain priority value to 63 bits. This change leads to a significant code size reduction (about 25%) of the SMP schedulers. The negligible increase of the standard priority scheduler is due to some additional shift operations (SCHEDULER_PRIORITY_MAP() and SCHEDULER_PRIORITY_UNMAP()). Before: text filename 136 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleblock.o 464 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimplechangepriority.o 24 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimple.o 108 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleschedule.o 292 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleunblock.o 264 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleyield.o text filename 280 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityblock.o 488 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerprioritychangepriority.o 200 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriority.o 164 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityschedule.o 328 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityunblock.o 200 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityyield.o text filename 24112 arm-rtems5/c/imx7/cpukit/score/src/libscore_a-scheduleredfsmp.o text filename 37204 sparc-rtems5/c/gr740/cpukit/score/src/libscore_a-scheduleredfsmp.o text filename 42236 powerpc-rtems5/c/qoriq_e6500_32/cpukit/score/src/libscore_a-scheduleredfsmp.o After: text filename 136 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleblock.o 272 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimplechangepriority.o 24 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimple.o 108 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleschedule.o 292 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleunblock.o 264 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulersimpleyield.o text filename 280 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityblock.o 488 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerprioritychangepriority.o 208 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriority.o 164 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityschedule.o 332 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityunblock.o 200 sparc-rtems5/c/erc32/cpukit/score/src/libscore_a-schedulerpriorityyield.o text filename 18860 arm-rtems5/c/imx7/cpukit/score/src/libscore_a-scheduleredfsmp.o text filename 28520 sparc-rtems5/c/gr740/cpukit/score/src/libscore_a-scheduleredfsmp.o text filename 32664 powerpc-rtems5/c/qoriq_e6500_32/cpukit/score/src/libscore_a-scheduleredfsmp.o
13:35 Changeset in rtems-libbsd [9521c08]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
wpa_supplicant: Use arc4random instead of getentropy.
13:28 Changeset in rtems-libbsd [b15a719]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Change RTEMS version to 5 Update #3220.
13:28 Changeset in rtems-libbsd [c64806c]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
tests/mutex01: Fix mtx_recursed() usage
13:28 Changeset in rtems-libbsd [6fbcf2e]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
tests/program01: Fix test name
12:40 Ticket #3185 (Change uptime seconds to int32_t) closed by Sebastian Huber
fixed
12:39 Changeset in rtems [b225aa1]5 by Sebastian Huber <sebastian.huber@…>
Reject incompatible tool chains Update #3185.
09:44 Ticket #3223 (libbsd: wpa_supplicant has to be started dynamically) created by Christian Mauderer
To connect to a WPA encrypted network using libbsd it is currently …
09:35 Ticket #3222 (libbsd: WiFi Support needs rc.conf integration) created by Christian Mauderer
Currently WLAN is still only poorly integrated into libbsd. A number …
09:22 Changeset in rtems-docs [60a6d6e]5 by Sebastian Huber <sebastian.huber@…>
Change RTEMS version to 5 Update #3220.
08:54 Changeset in rtems-tools [6f5cfad]5 by Sebastian Huber <sebastian.huber@…>
Add tester imx7.ini Update #3090.
08:41 Changeset in rtems-tools [469e362]5 by Sebastian Huber <sebastian.huber@…>
Add tools/5 patches Update #3220.
08:35 Changeset in rtems-tools [a70b8e6]5 by Sebastian Huber <sebastian.huber@…>
Add tools/5 patch Update #3220.
08:25 Changeset in rtems-tools [52f3790]5 by Sebastian Huber <sebastian.huber@…>
Add tools/5 patch Update #3220.
08:07 Changeset in rtems-tools [2da1356]5 by Sebastian Huber <sebastian.huber@…>
Add tools/5 patches Update #3220.
08:05 Changeset in rtems-tools [b5a4b15]5 by Sebastian Huber <sebastian.huber@…>
Add tools/5 patch Update #3220.
07:44 Changeset in rtems-tools [aff8c47]5 by Sebastian Huber <sebastian.huber@…>
Add tools/5 patch Update #3220.
07:09 Ticket #3189 (MUTEX_INITIALIZER missing braces warning) closed by Sebastian Huber <sebastian.huber@…>
fixed: In c6b890c/rtems-source-builder: […]
06:59 Developer/Simulators/QEMU edited by Sebastian Huber
(diff)
06:57 TBR/BSP/STM32_F4 edited by Sebastian Huber
(diff)
06:55 GSoC/GettingStarted edited by Sebastian Huber
(diff)
06:53 Boards/Zynq - Zedboard edited by Sebastian Huber
(diff)
06:51 Developer/Simulators/gem5 edited by Sebastian Huber
(diff)
06:51 Debugging/sis edited by Sebastian Huber
(diff)
06:49 Developer/Tools/RSB edited by Sebastian Huber
(diff)
06:49 Ticket #3221 (RSB wiki page duplicates documentation) created by Sebastian Huber
The wiki page https://devel.rtems.org/wiki/Developer/Tools/RSB
06:45 WikiStart edited by Sebastian Huber
(diff)
06:44 TBR/Website/Board_Support_Packages edited by Sebastian Huber
(diff)
06:41 Release/5/5.2 edited by Sebastian Huber
(diff)
06:40 Release/4.12/4.12.0 created by Sebastian Huber
06:40 Release/4.12/4.12.1 created by Sebastian Huber
Release/4.12/4.12.1Release/5/5.2.
06:38 Release/5/5.1 edited by Sebastian Huber
(diff)
06:36 Release/5 edited by Sebastian Huber
(diff)
06:33 Release/4.12 created by Sebastian Huber
Release/4.12Release/5.
06:33 Release edited by Sebastian Huber
(diff)
06:11 Ticket #3220 (Change RTEMS release number scheme from 4.12 to 5) created by Sebastian Huber
As discussed here …

11/08/17:

14:29 Changeset in rtems [64ba1a96]5 by Sebastian Huber <sebastian.huber@…>
posix: Change created_with_explicit_scheduler Remove POSIX_API_Control::created_with_explicit_scheduler. Add Thread_Control::was_created_with_inherited_scheduler. This fixes also pthread_getattr_np() for Classic tasks. Update #2514.
13:43 Changeset in rtems-libbsd [7c68f4e]55-freebsd-126-freebsd-12 by Sichen Zhao <1473996754@…>
Port BBB sd driver files to RTEMS. So BBB can mount and read eMMC and SD card.
13:43 Changeset in rtems-libbsd [7e52ab9]55-freebsd-126-freebsd-12 by Sichen Zhao <1473996754@…>
Import BBB sd driver files from FreeBSD.
13:37 Changeset in rtems [7147dc4]5 by Sebastian Huber <sebastian.huber@…>
posix: Remove POSIX_API_Control::schedpolicy Use the thread CPU budget algorithm to determine the scheduler policy. This fixes also pthread_getschedparam() for Classic tasks. Update #2514.
13:11 Changeset in rtems-libbsd [bdc4f21]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
wpa: Port to new files to RTEMS.
13:10 Changeset in rtems-libbsd [b0f0b2f]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
wpa: Import all files for KRACK patch.
12:19 Changeset in rtems-source-builder [089327b]5 by Sebastian Huber <sebastian.huber@…>
Change RSB version from 4.12 to 5 Update #3220.
12:13 Changeset in rtems [7078a00b]5 by Sebastian Huber <sebastian.huber@…>
bsp/t32mppc: Use fixed exception handlers
11:43 Changeset in rtems-libbsd [e5abb31]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
libbsd.txt: Describe current state of WLAN.
10:25 Changeset in rtems-libbsd [a506ba9]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
at91_mci: Add timing to read_ivar.
09:44 Changeset in rtems-libbsd [e7f3260]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
freebsd/bus: Check return value of bus_accessor.
08:52 Changeset in rtems-source-builder [c6b890c]5 by Sebastian Huber <sebastian.huber@…>
5: Add Newlib patches Update #3185. Close #3189.
08:46 Changeset in rtems-tools [e5dad3c]5 by Sebastian Huber <sebastian.huber@…>
Change RTEMS version from 4.12 to 5 Update #3220.
08:31 Changeset in rtems-source-builder [637061c]5 by Sebastian Huber <sebastian.huber@…>
Change RTEMS version from 4.12 to 5 Update #3220.
07:44 Ticket #3218 (Termios canonical mode (ICANON) does not return input line by line) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 791469bd/rtems: […]
07:42 Changeset in rtems [fdf0e55]5 by Sebastian Huber <sebastian.huber@…>
bsp/imx: Add UART baud change Update #3090.
07:19 Changeset in rtems [336fe3b]5 by Sebastian Huber <sebastian.huber@…>
bsp/imx: Better utilize UART transmit FIFO Update #3090.
02:27 Changeset in rtems [e6df806]5 by Chris Johns <chrisj@…>
tests: Use ld to map (wrap) printf, puts and putchar to tester functions. - Remove the macro defines and the need for tmacro.h by remapping the symbols using ld's wrap option. - Remove FLUSH_OUTPUT, it was empty. - Move rtems_test_exit to libmisc/testsupport as a function. Update #3199.

11/07/17:

21:25 Changeset in rtems [bcd0c06c]5 by Chris Johns <chrisj@…>
tests: Use rtems_test_begin and rtems_test_end. Add a tests enum and move all test banner test to the library in libmisc. Update #3199.
16:45 Ticket #3219 (Zynq BSP missing linker option --gc-sections) created by Chris Johns
This Zynq BSP is missing this option.
15:17 Changeset in rtems-libbsd [ec29b2a]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
at91_mci: Port to RTEMS and adapt for atsam.
14:15 Changeset in rtems-libbsd [5892207]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
saf1761_otg: Port to RTEMS.
10:54 Changeset in rtems-libbsd [ddd16bc]55-freebsd-126-freebsd-12 by Christian Mauderer <Christian.Mauderer@…>
dhcpcd: Don't ignore interface on transient errors. In case of WPA on a WiFi? interface, the interface isn't yet ready when the dhcpcd starts. Sending a packet during that time returns with a ENOBUFS. That caused the interface to be ignored. On the upstream repository of dhcpcd, that transient error (and some others) are already ignored.
07:30 Changeset in rtems [32ceb385]5 by Sebastian Huber <sebastian.huber@…>
tests: Use <tmacros.h> Update #3170. Update #3199.
06:50 Ticket #3218 (Termios canonical mode (ICANON) does not return input line by line) created by Sebastian Huber
In canonical mode, input is made available line by line. We must stop …
06:07 Changeset in rtems [1055ff20]5 by Sebastian Huber <sebastian.huber@…>
tests: Use normal console for user input tests
05:43 Changeset in rtems [6f3fb8a]5 by Chris Johns <chrisj@…>
cpukit: Add a Version API. Provide functions to get the version string, major, minor and revision numbers and the version control identifer that is a unique tag for the version control system. Update #3199.

11/06/17:

13:49 Changeset in rtems [791469bd]5 by Sebastian Huber <sebastian.huber@…>
termios: Fix canonical mode In canonical mode, input is made available line by line. We must stop the canonical buffer filling upon reception of an end-of-line character. Close #3218.
12:01 Changeset in rtems-docs [d078405]5 by Sebastian Huber <sebastian.huber@…>
CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER Close #3170. Update #3199.
10:44 Changeset in rtems-docs [0e8f08d]5 by Sebastian Huber <sebastian.huber@…>
c-user: Use configuration option as section name This makes it easier to find the documentation for a given configuration option. Remove superfluous comments.
08:05 Changeset in rtems [d71542c]5 by Sebastian Huber <sebastian.huber@…>
fsjffs2gc01: Fix sporadic test failures
06:56 Changeset in rtems [7b00c2fa]5 by Sebastian Huber <sebastian.huber@…>
tests: Use <tmacros.h> in all tests Update #3170. Update #3199.
06:29 Ticket #3216 (Replace vprintk() implementation) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 1082798/rtems: […]

11/05/17:

07:48 Changeset in rtems-tools [30218f5]5 by Chris Johns <chrisj@…>
tester: Add reporting the RTEMS version, build and tools. Update #3217.
07:38 Ticket #3217 (Add RTEMS version, build and tools details to tests) created by Chris Johns
Published test results need the RTEMS version, how it is built and the …

11/04/17:

00:22 Changeset in rtems-tools [24d51f7]5 by Chris Johns <chrisj@…>
tester: Change the mail subject so it list by BSP in the archives. Change the subject to place the arch/bsp first and then a short score card for the tests so the archive can be listed by subject and you can see regressions.
Note: See TracTimeline for information about the timeline view.