Timeline



09/06/16:

23:34 Changeset in rtems [e2f7059]4.10 by Joel Sherrill <joel@…>
m32csim-testsuite.tcfg: m32csim now completes build
08:55 Changeset in rtems [cac586e6]5 by Sebastian Huber <sebastian.huber@…>
bsp/xilinx-zynq: Avoid duplicate declaration
08:50 Changeset in rtems [1dd8fff]5 by Sebastian Huber <sebastian.huber@…>
capture: Use proper accessor functions
07:21 Changeset in rtems [fab0dd1]4.11 by Pavel Pisa <pisa@…>
arm/raspberrypi: minimized mainline patch move MMU in front of application image and correct RPi2 boot on 4.11 branch. This is minimized version of mainline patch arm/raspberrypi: move MMU in front of application image to respect variable memory size. plus correction which has been part of other mainline patches. This is end of series which allows 4.11 to boot on Raspberry Pi. Closes #2782 Closes #2783
07:15 Ticket #2783 (RaspberryPi BSP cannot be used with actual firmware) created by Pavel Pisa
Raspberry Pi BSP on 4.11 branch is unusable when boot loader start …
07:10 Ticket #2782 (Cache manager for ARM and libdl RTL for most of architectures are ...) created by Pavel Pisa
Cache manager for ARM and libdl RTL for most of architectures are …
06:40 Changeset in rtems-source-builder [7cdf319]5 by Chris Johns <chrisj@…>
Fix comments.
06:20 Changeset in rtems [11323b7]5 by Chris Johns <chrisj@…>
libdl: Add ARM C++ relocation record support. Closes #2767
05:44 Changeset in rtems [7af6b58c]5 by Sebastian Huber <sebastian.huber@…>
capture: Workaround to avoid misaligned access Move the 64-bit field to a not 64-bit aligned structure offset to stop the compiler from generating 64-bit load/store operations.
04:48 Changeset in rtems-source-builder [69d4d4b]4.10 by Chris Johns <chrisj@…>
avr: Fix the arch and disable iconv.

09/05/16:

22:42 Changeset in rtems [8591004]4.10 by Joel Sherrill <joel@…>
Backport capability to exclude tests from building Backported build infrastructure and .tcfg files from master.
01:52 Debugging/Newlib edited by Gene Smith
(diff)
00:48 Changeset in rtems [7dc65fa]4.10 by Joel Sherrill <joel@…>
Add autotools generated files
00:15 Changeset in rtems-source-builder [90c49f5]4.10 by Chris Johns <chrisj@…>
m32c: Disable iconv and use gn89 with clang on FreeBSD.

09/04/16:

23:57 Changeset in rtems-source-builder [ebd5615]4.10 by Chris Johns <chrisj@…>
h8300: Update to binutils-2.26 and do not build iconv. The binutils-2.26 fixes an operand out of range bug. The iconv has tables which overflow the address ranges in the h8300.
02:55 Changeset in rtems-release [ecf3904]5 by Chris Johns <chrisj@…>
Documentation is not built for some versions.
02:54 Changeset in rtems-release [0b5b029]5 by Chris Johns <chrisj@…>
Make the source packages included version specific.
02:29 Changeset in rtems [c1d7c5f]4.10 by Chris Johns <chrisj@…>
Change version to 4.10 to the rtems-bsps.
00:45 Changeset in rtems-release [97cc04c]5 by Chris Johns <chrisj@…>
Initial addition of the RTEMS releasing scripts.

09/03/16:

12:10 Changeset in rtems [5d369c85]5 by Pavel Pisa <pisa@…>
arm/raspberrypi: use GPU/system timer as clock source. It has advantage that it is designed as free-running counter with compare registers and can easily serve for for both timecounter and tick interrupt.
12:04 Changeset in rtems [40f49d1]5 by Pavel Pisa <pisa@…>
arm/raspberrypi: correct and extend definitions for GPU timer.
01:45 Changeset in rtems-source-builder [60e8ddf]4.10 by Chris Johns <chrisj@…>
nios2: FreeBSD clang needs gnu89 to build gcc.
01:44 Changeset in rtems-source-builder [3b93640]4.10 by Chris Johns <chrisj@…>
nios2: Switch to gdb-7.11.
01:37 Changeset in rtems [4c53be1]5 by Pavel Pisa <pisa@…>
arm/raspberrypi: more definitions of BCM2836 core local peripherals.
00:26 Changeset in rtems [bf62c39]5 by Rohini Kulkarni <krohini1593@…>
arm/raspberrypi: include definitions of BCM2836 SMP mailboxes.

09/02/16:

23:59 Changeset in rtems [28eeb6a]4.11 by Pavel Pisa <pisa@…>
bsps/arm: reorganize CP15 code to allow clean and invalidate ARMv7 cache by level. New function arm_cp15_cache_invalidate_level and arm_cp15_cache_clean_level can be used to maintain single cache level (instruction or data). Updates #2782 Updates #2783
23:59 Changeset in rtems [6e6a77a6]5 by Pavel Pisa <pisa@…>
bsps/arm: reorganize CP15 code to allow clean and invalidate ARMv7 cache by level. New function arm_cp15_cache_invalidate_level and arm_cp15_cache_clean_level can be used to maintain single cache level (instruction or data).
23:30 Changeset in rtems [00dfdd6]4.11 by Pavel Pisa <pisa@…>
bsps/arm: remove lock in arm_cp15_set_translation_table_entries(). Protection by rtems_interrupt_disable() is incompatible with SMP build. Actual page table entries manipulation function does not need locking and disabling cache and can be run concurrently even on multiple CPUs as long as changes do not modify same region. If the function is called from more threads/CPUs to modify same region with different mapping options concurrently then there is problem at another level of virtual address space management and has to be solved by mutex or other locking at that level. Updates #2782 Updates #2783
23:30 Changeset in rtems [5c494641]5 by Pavel Pisa <pisa@…>
bsps/arm: remove lock in arm_cp15_set_translation_table_entries(). Protection by rtems_interrupt_disable() is incompatible with SMP build. Actual page table entries manipulation function does not need locking and disabling cache and can be run concurrently even on multiple CPUs as long as changes do not modify same region. If the function is called from more threads/CPUs to modify same region with different mapping options concurrently then there is problem at another level of virtual address space management and has to be solved by mutex or other locking at that level.
23:30 Changeset in rtems [6f4e903]4.11 by Pavel Pisa <pisa@…>
bsps/arm: use defines for cache type register format field. The change documents meaning of codes and opens well defined way to use cache type format for cache examination/debugging outside of arm-cp15.h file. Updates #2782 Updates #2783
23:30 Changeset in rtems [7ec689ad]5 by Pavel Pisa <pisa@…>
bsps/arm: use defines for cache type register format field. The change documents meaning of codes and opens well defined way to use cache type format for cache examination/debugging outside of arm-cp15.h file.
08:17 Changeset in rtems-source-builder [72063fa]4.10 by Chris Johns <chrisj@…>
4.10: Add NIOS2 patch checksums.
08:16 Changeset in rtems-tools [4fdd883]5 by Chris Johns <chrisj@…>
4.10: Add NIOS2 newlib patch.
08:03 Changeset in rtems-tools [32b861f]5 by Chris Johns <chrisj@…>
4.10: Add NIOS2 gcc patch.
07:56 Changeset in rtems-tools [5af5b04]5 by Chris Johns <chrisj@…>
4.10: Add NIOS2 binutils patch.
07:47 Changeset in rtems-source-builder [46c9159]4.10 by Chris Johns <chrisj@…>
4.10: Remove the patch for the bfin for gdb-7.11.
07:40 Changeset in rtems-source-builder [9bf32d1]4.10 by Chris Johns <chrisj@…>
4.10: No ARM 64bit support on 4.10.
07:00 Changeset in rtems-tools [a46a8d3]5 by Chris Johns <chrisj@…>
4.10: Add FreeBSD Python patch.
06:56 Changeset in rtems-tools [3f17371]5 by Chris Johns <chrisj@…>
4.10: Add the gdb-7.11 ERC patches to 4.10.
04:55 Changeset in rtems-source-builder [f337443c]4.10 by Chris Johns <chrisj@…>
4.10: Use a defaults file for the arch build sets.
03:37 Changeset in rtems [f2aef528]4.10 by Chris Johns <chrisj@…>
Back port rtems-bsps for use in the release procedure.
03:25 Changeset in rtems-source-builder [74cecb8]5 by Joel Sherrill <joel@…>
rtems-default.bset: Update to binutils 2.27
03:18 Changeset in rtems-tools [3581fab]5 by Chris Johns <chrisj@…>
4.10: Add the automake patch to the 4.10 patches.

09/01/16:

22:58 Changeset in rtems-source-builder [1362d4f]4.10 by Chris Johns <chrisj@…>
Update 4.10 to build from the RTEMS 4.10 branch.
19:55 Changeset in rtems [38a5385]5 by Pavel Pisa <pisa@…>
arm/raspberrypi: propagate number of configured CPUs into linker script.
19:40 Changeset in rtems [dfbedf3]5 by Pavel Pisa <pisa@…>
arm/raspberrypi: rename linkcmds to linkcmds.in to allow their configure processing.
15:40 Ticket #2781 (Information about network protocols) closed by Gedare Bloom
invalid: MisH: You can get an excellent introduction to all things "RTEMS" by starting from https://devel.rtems.org/wiki/GSoC/GettingStarted and following some of the links. For example there is a link to a page describing the mailing lists. The page also explains how to easily get RTEMS running inside of a simulated CPU.

08/31/16:

21:09 SOCIS/2016 edited by Saeed Ehteshamifar
(diff)
21:05 SOCIS/2016 edited by Saeed Ehteshamifar
(diff)
14:49 Changeset in rtems [13c985c]5 by Pavel Pisa <pisa@…>
arm/xilinx_zynq: ensure that cache is cleaned and MMU disabled when initialization starts. The u-boot loader enables the MMU plus the data and instruction caches in some versions which results in RTEMS boot failure. Closes #2774.
14:49 Changeset in rtems [22cc8078]4.11 by Pavel Pisa <pisa@…>
arm/xilinx_zynq: ensure that cache is cleaned and MMU disabled when initialization starts. The u-boot loader enables the MMU plus the data and instruction caches in some versions which results in RTEMS boot failure. Closes #2774.
12:24 Ticket #2781 (Information about network protocols) created by MisH
Hi, At the moment i do a research for my company, in terms of rtos for …
08:56 Changeset in rtems [1c18ebf0]5 by Chris Johns <chrisj@…>
libmisc/capture: Remove the reserved _t in the types.

08/30/16:

08:10 Changeset in rtems-tools [a252faf]4.105 by Chris Johns <chrisj@…>
bsp-builder: Results format fixes.
06:46 Changeset in rtems [6da06c5]5 by Chris Johns <chrisj@…>
libmisc/capture: Fix the capture engine on SMP. This patches some issues with the capture engine: 1. Check is the engine is open in ctrace commands. 2. Check all record open and appends for overflow. 3. Fix the record open to take the size of user data and not the record header. 4. Use packed structs for data being written to the per cpu buffers. 5. Remove direct struct access to the capture buffers to avoid misaligned accesses. 6. Add support to extract records, no struct access to the capture buffers. 7. Update ctrace to extract records from the capture buffers. 8. Add support to ctrace to always print the task name if it has one. 9. Add support to manage names or the lack of a name. 10. Range of minor fixes. 11. Fix a long standing bug in ctset's handling of args. Closes #2780.

08/29/16:

01:47 Changeset in rtems-tools [06c3ccd]4.105 by Chris Johns <chrisj@…>
bsp-builder: Fix bugs.

08/27/16:

06:15 Changeset in rtems [3c74f4aa]5 by Mudit Jain <muditjain18011995@…>
arm/raspberrypi: Mailbox : Extending functionality Adding functionality to get board serial, power state & clock rate

08/26/16:

15:20 Changeset in rtems-source-builder [851c734]5 by Gedare Bloom <gedare@…>
doc: update with version information
15:05 Changeset in rtems-source-builder [906e145]5 by Gedare Bloom <gedare@…>
rtems: move 4.9 and 4.10 bsets to new branches and delete from master
15:04 Changeset in rtems-source-builder [3ad1e56]4.10 by Gedare Bloom <gedare@…>
4.10: new branch, remove unnecessary bsets
15:01 Changeset in rtems-source-builder [3266ec3]4.9 by Gedare Bloom <gedare@…>
4.9: new branch, remove unnecessary bsets
03:45 Ticket #2780 (Capture engine accesses 'capture_per_cpu' without first checking.) created by Chris Johns
The capture does not check if an open has created the capture_per_cpu …

08/25/16:

06:18 Changeset in rtems [6deb4190]5 by Chris Johns <chrisj@…>
libdl: The dl04 is too big for some BSPs. Do not built it.
06:14 Changeset in rtems-tools [e9fb4c5]4.105 by Chris Johns <chrisj@…>
bsp-builder: Add lm3s6965_qemu to ARM bsp list. Fix network-debug options.
06:13 Changeset in rtems-tools [f7f0704]4.105 by Chris Johns <chrisj@…>
bsp-builder: Fix column printing of the arch/bsp.
05:58 Ticket #2704 (Weak symbols not found by loaded code) closed by Chris Johns <chrisj@…>
fixed: In ef4a46e0293111361c970a287c29a185905121b2/rtems-tools: […]
05:54 Changeset in rtems-tools [885aebd]4.105 by Chris Johns <chrisj@…>
linkers/syms: Add weak symbols to the global symbol table. Add any weak symbols that have been linked into the base image to the global symbol table. A weak symbol is global when view viewed from a dynamically loaded module. Closes #2704.
05:54 Changeset in rtems-tools [ef4a46e]4.114.11.04.11.1 by Chris Johns <chrisj@…>
linkers/syms: Add weak symbols to the global symbol table. Add any weak symbols that have been linked into the base image to the global symbol table. A weak symbol is global when view viewed from a dynamically loaded module. Closes #2704.

08/24/16:

15:02 SOCIS/2016 edited by Saeed Ehteshamifar
(diff)
14:53 SOCIS/2016 edited by Saeed Ehteshamifar
(diff)
14:49 SOCIS/2016 edited by Saeed Ehteshamifar
(diff)
14:26 Changeset in rtems [8099e0a]5 by Alexander Krutwig <alexander.krutwig@…>
bsp/atsam: Add missing break statement
13:30 Changeset in rtems [8cf102dd]5 by Alexander Krutwig <alexander.krutwig@…>
bsp/atsam: Fix data cache flush
13:25 Changeset in rtems [da15db78]5 by Sebastian Huber <sebastian.huber@…>
score: Improve red-black tree debug support Ensure that we extract a node only from the right tree.

08/23/16:

13:51 Changeset in rtems-libbsd [8e65e1b]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
usb: Update to FreeBSD trunk 2016-08-23 FreeBSD trunk, 2016-08-23, 9fe7c416e6abb28b1398fd3e5687099846800cfd.
13:37 Changeset in rtems-libbsd [7c77211]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
doc: Update rules to modify FreeBSD code
12:22 Changeset in rtems-libbsd [0c24e06]55-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
mmc: Update to FreeBSD trunk 2016-08-23
11:16 Changeset in rtems-libbsd [ea5880a]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
at91_mci: Import from FreeBSD
08:51 Ticket #2779 (building rtems-4.10 using rsb 4.12 (git upstream) fails due to several ...) created by Christian Spindeldreier
Building rtems-4.10 using the rtems-source-builder upstream version …
01:14 Ticket #2775 (ARM CP15 arm_cp15_set_translation_table_entries fails if TTB in ...) closed by Chris Johns <chrisj@…>
fixed: In 89a319a0f8bb9374e5a23358b266db3745268a3a/rtems: […]
01:11 Changeset in rtems [89a319a0]5 by Chris Johns <chrisj@…>
libbsp/arm: Fix ARM BSPs missing the bsp_translation_table_end symbol. Closes #2775.
01:11 Changeset in rtems [8add2b6]4.11 by Chris Johns <chrisj@…>
libbsp/arm: Fix ARM BSPs missing the bsp_translation_table_end symbol. Closes #2775.
Note: See TracTimeline for information about the timeline view.