Timeline



06/04/18:

20:44 Changeset in rtems-tools [b762312]5 by Vijay Kumar Banerjee <vijaykumar9597@…>
tester: Add script to generate html coverage report from covoar output Add support in tester to run covoar and generate an html report to display the summary of the coverage reports generated from covoar. Co-authored-by : Cillian O'Donnell <cpodonnell8@…>
05:33 Changeset in rtems [75933d5d]5 by Sebastian Huber <sebastian.huber@…>
capture: Use unlimited objects Avoid resource allocation problems with unlimited objects.

06/01/18:

23:01 GSoC/2018 edited by Vidushi Vashishth
(diff)
22:59 GSoC/2018 edited by Vidushi Vashishth
(diff)
22:32 Changeset in rtems-tools [14a1c097]5 by Vidushi Vashishth <reachvidu@…>
Updating trace buffer configuration
05:11 Changeset in rtems [7ee59313]5 by Sebastian Huber <sebastian.huber@…>
Remove Clock_driver_support_shutdown_hardware() The aim of this clock driver hook was to stop clock tick interrupts at some late point in the exit() procedure. The use of atexit() pulls in malloc() which pulls in errno. It is incompatible with the intention of the CONFIGURE_DISABLE_NEWLIB_REENTRANCY configuration option. The exit() function must be called from thread context, so accompanied clock tick interrupts should cause no harm. On the contrary, someone may assume a normal operating system operation, e.g. working timeouts. Remove the Clock_driver_support_shutdown_hardware() clock driver hook. Close #3436.
05:09 Changeset in rtems-docs [aaf9c78]5 by Sebastian Huber <sebastian.huber@…>
c-user: RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE Close #3437.
05:04 Changeset in rtems [de9b7d7]5 by Sebastian Huber <sebastian.huber@…>
Add RTEMS_FATAL_SOURCE_INVALID_HEAP_FREE An invalid heap usage such as a double free is usually a fatal error since this indicates a use after free. Replace the use of printk() in free() with a fatal error. Update #3437.
05:00 Changeset in rtems [dea4bbe3]5 by Sebastian Huber <sebastian.huber@…>
bsps: Avoid malloc() in generic IRQ support Use rtems_heap_allocate_aligned_with_boundary() instead of malloc() to avoid a dependency on errno.

05/31/18:

16:41 GSoC/2018 edited by udit agarwal
Updated status and Blog link (diff)
16:38 GSoC/2018 edited by Danxue Huang
(diff)
16:37 GSoC/2018 edited by Danxue Huang
(diff)

05/30/18:

17:12 Ticket #3439 (buffer overflow in rtems_rfs_bitmap_create_search()) created by waltl
I am encountering a buffer overrun in …
16:47 GSoC/2018 edited by Danxue Huang
(diff)
16:04 GSoC/2018 edited by Danxue Huang
(diff)
16:03 GSoC/2018 edited by Danxue Huang
(diff)
15:06 GSoC/2018 edited by Gedare Bloom
formatting (diff)
15:05 GSoC/2018 edited by Gedare Bloom
My meeting minutes. (diff)
13:57 GSoC/2018 edited by Vijay Kumar Banerjee
(diff)
12:40 GSoC/2018 edited by Amaan Cheval
GSoC update #3 (diff)
12:27 Changeset in rtems-libbsd [ff36f5e]55-freebsd-126-freebsd-12 by Christian Mauderer <christian.mauderer@…>
Import ipsec-tools 0.8.2. Import unchanged ipsec-tools sources in the release version 0.8.2. The homepage of ipsec-tools is http://ipsec-tools.sourceforge.net/. The sources can be obtained from there.
11:34 Changeset in rtems-libbsd [f8cf074]55-freebsd-126-freebsd-12 by Christian Mauderer <christian.mauderer@…>
beagle: Disable WiFi? if libbsd is build without it. Update #3351.
08:52 Changeset in rtems-docs [b5d29c9]5 by Sebastian Huber <sebastian.huber@…>
c-user: Update rtems_region_create()

05/29/18:

07:14 Changeset in rtems [9e3bb45]5 by Sebastian Huber <sebastian.huber@…>
bsp/riscv_generic: New linker command file This linker command file is based on the "riscv64-rtems5-ld --verbose" output. Update #3433.

05/28/18:

17:22 Ticket #3438 (GCC multilibs for ARM don't support FPU synonyms) created by munster
There are two issues with the ARM multilibs. 1. When a program is …
11:14 Changeset in rtems [92388f6]5 by Hesham Almatary <Hesham.Almatary@…>
bsps/riscv_generic: Rename and add variants Add BSP variants to match supported RISC-V ISA variants (multilibs).
05:07 Changeset in rtems [0fe48afa]5 by Sebastian Huber <sebastian.huber@…>
build: Really fix RTEMS_ENABLE_RTEMSBSP() The d542af2e4304b663461330a60313fb6c4fdbf4db commit was a bad one. The riscv32 and riscv64 targets share a riscv source directory. The potential future powerpcspe and powerpc targets need this change as well. For example ${target_arch} is "riscv32" and ${cfg_arch} is "riscv".
05:01 Ticket #3435 (Add test case for CONFIGURE_BSP_PREREQUISITE_DRIVERS configuration option) reopened by Sebastian Huber
04:59 Changeset in rtems [a03178ba]5 by Sebastian Huber <sebastian.huber@…>
build: Fix typo in RTEMS_ENABLE_RTEMSBSP()

05/25/18:

17:43 GSoC/2018 edited by salil sirotia
(diff)
15:09 Ticket #3435 (Add test case for CONFIGURE_BSP_PREREQUISITE_DRIVERS configuration option) closed by Joel Sherrill
wontfix: It is used in deployed use code. Off the top of my head, it was used on a custom erc32 board to initialize a VMEBus and associated hardware before any other drivers were initialized. This was very specifically needed to extend -- not modify -- an existing BSP. If you want a test added, great. But this has a very legitimate use case. It should not be deleted.
12:56 Ticket #3437 (Replace use of printk() in free() with a fatal error) created by Sebastian Huber
An invalid heap usage such as a double free is usually a fatal error. …
12:32 Ticket #3436 (Remove clock driver Clock_driver_support_shutdown_hardware() hook) created by Sebastian Huber
Most applications use a clock driver and most BSPs use the clock …
12:12 Changeset in rtems [b8774933]5 by Sebastian Huber <sebastian.huber@…>
score: Simplify _Objects_Name_to_string() Do not use isprint() from <ctype.h> since it depends on the heavy weight C locale implementation in Newlib.
12:09 Changeset in rtems [7d7c50de]5 by Sebastian Huber <sebastian.huber@…>
rtems: Move _Status_Object_name_errors_to_status Move _Status_Object_name_errors_to_status to a separate file to avoid a dependency on errno. Dependencies to errno are hard to be removed by the linker garbage collection.
08:42 Ticket #3435 (Add test case for CONFIGURE_BSP_PREREQUISITE_DRIVERS configuration option) created by Sebastian Huber
This configuration option is untested
08:39 Ticket #3434 (Add CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE configuration option) created by Sebastian Huber
08:35 Changeset in rtems [877f5d6]5 by Sebastian Huber <sebastian.huber@…>
sptests: Remove CONFIGURE_MILLISECONDS_PER_TICK This configuration define is not supported.
08:27 Changeset in rtems [61d5c886]5 by Sebastian Huber <sebastian.huber@…>
config: Hide CONFIGURE_SCHEDULER_COUNT Rename CONFIGURE_SCHEDULER_COUNT to _CONFIGURE_SCHEDULER_COUNT to emphasise that this is not a user configuration option.
08:19 Changeset in rtems [3b2817b6]5 by Sebastian Huber <sebastian.huber@…>
gumstix: Remove CONFIGURE_INTERRUPT_STACK_MEMORY This define is not supported by confdefs.h. In addition, on ARM the interrupt stack size is defined by the linker command file.
08:13 Changeset in rtems [2292ca22]5 by Sebastian Huber <sebastian.huber@…>
config: Hide CONFIGURE_INITIAL_EXTENSION_TABLE Rename CONFIGURE_INITIAL_EXTENSION_TABLE to _CONFIGURE_INITIAL_EXTENSION_TABLE to emphasise that this is not a user configuration option.
07:10 Ticket #3433 (Add SMP support for RISC-V) created by Sebastian Huber
The project includes the following tasks: * add CPU counter support * …
06:21 Changeset in rtems [4b3c8b82]5 by Christian Mauderer <christian.mauderer@…>
bsp/atsam: Remove side effect from gmac functions. Quite a number of GMAC_... functions had a side effect of enabling the transmit and receive. During the initialization of the ethernet driver, that lead to the situation that the receive has been already enabled while the DMA isn't set up correctly. Therefore the DMA interpreted the values at address 0 as an DMA descriptor. When a packet is received during that time, the behaviour is quite undefined.

05/24/18:

21:25 Changeset in rtems-tools [e04699b]5 by Chris Johns <chrisj@…>
tester/covoar: Do not load an executable's local symbols.
13:13 GSoC/2018 edited by Gedare Bloom
(diff)
12:22 GSoC/2018 edited by udit agarwal
Updated status (diff)
08:32 Changeset in rtems [ef61d89]5 by Christian Mauderer <christian.mauderer@…>
bsp/atsam: Reserve one region for applications. This allows a user to overwrite some MPU settings. That can for example be usefull for devices with special requirements that are connected to the external bus interface.
06:05 Changeset in rtems-tools [1318c11]5 by Chris Johns <chrisj@…>
linkers: Add an address to line tool. This tool provides a way to check the DWARF toolkit support for finding lines from addresses.
06:02 Changeset in rtems-tools [0f481ad]5 by Chris Johns <chrisj@…>
rtemstoolkit: Add an output routine for a std::exception. The output routine is used by a number of tools.
06:00 Changeset in rtems-tools [1cab261]5 by Chris Johns <chrisj@…>
rtemstoolkit/dwarf: Fixes for getting source lines.

05/23/18:

19:56 GSoC/2018 edited by salil sirotia
(diff)
19:10 Ticket #3432 (Remove Simple SMP Priority Scheduler) created by Joel Sherrill
This scheduler was the first SMP scheduler added. It was created to …
18:54 Changeset in rtems-docs [ecd9d18]5 by Joel Sherrill <joel@…>
configuring_a_system.rst, scheduling_concepts.rst: Fix spelling of arbitrary.
17:40 GSoC/2018 edited by salil sirotia
(diff)
17:39 GSoC/2018 edited by salil sirotia
(diff)
15:18 GSoC/2018 edited by Danxue Huang
(diff)
14:40 GSoC/2018 edited by Vijay Kumar Banerjee
(diff)
13:59 GSoC/2018 edited by Vidushi Vashishth
(diff)
13:51 GSoC/2018 edited by Amaan Cheval
(diff)
13:18 GSoC/2018/coverage_analysis_toolset edited by Vijay Kumar Banerjee
(diff)
12:59 GSoC/2018/coverage_analysis_toolset edited by Vijay Kumar Banerjee
(diff)
12:17 Changeset in rtems [65f868c]5 by Sebastian Huber <sebastian.huber@…>
Add _CPU_Counter_frequency() Add rtems_counter_frequency() API function. Use it to initialize the counter value converter via the new system initialization step (RTEMS_SYSINIT_CPU_COUNTER). This decouples the counter implementation and the counter converter. It avoids an unnecessary pull in of the 64-bit integer division from libgcc. Update #3456.
08:39 Changeset in rtems-tools [1f1a10f]5 by Chris Johns <chrisj@…>
elftoolchain: Add libelftc.

05/22/18:

07:14 Changeset in rtems [4c7b18e3]5 by Sebastian Huber <sebastian.huber@…>
Add RTEMS_SYSINIT_CPU_COUNTER Add initialization step for the CPU counter support. Update #3456.
07:10 Changeset in rtems [5ec5503]5 by Sebastian Huber <sebastian.huber@…>
Reassign system initilization order numbers Assign each system initialization step a number divisible by 256 to allow more easily future additions. Keep the order as is.
06:52 Changeset in rtems [762fa62]5 by Sebastian Huber <sebastian.huber@…>
arm: Simplify CPU counter support Use the standard ARMv7-M systick module for the ARMv7-M CPU counter instead of DWT counter since the DWT counter is affected by power saving states. Use an inline function for _CPU_Counter_difference() for all ARM BSPs. Update #3456.

05/21/18:

22:57 Changeset in rtems [df71100c]5 by Joel Sherrill <joel@…>
dltests-broken-on-this-bsp.tcfg: Add dl06
16:53 GSoC/2018 edited by Vidushi Vashishth
(diff)
13:31 GSoC/2017 edited by aditya
(diff)
13:28 GSoC/2017 edited by aditya
(diff)
Note: See TracTimeline for information about the timeline view.