Timeline



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)

05/19/18:

20:32 Changeset in rtems-docs [8b67c91]5 by Chris Johns <chrisj@…>
user: Add RTEMS executable and test documentation.
19:31 Changeset in rtems-docs [e23a3ce]5 by Malte Münch <mamu@…>
c-user: changed RTEMS_STATUS_SUCCESSFUL to RTEMS_SUCCESSFUL

05/18/18:

22:35 History/Timeline edited by Malte Münch
(diff)
20:09 Developer/Coding/Boilerplate_File_Header edited by Malte Münch
TLS works as well ;-) (diff)
18:52 GSoC/2018/Posixcompliance edited by salil sirotia
(diff)
14:16 Changeset in rtems-docs [e66d9b2]5 by Malte Münch <mamu@…>
c-user/configuring_a_system.rst: Removed double 'with'
13:24 Ticket #3425 (examples-v2: PowerPC fails to build fat_ramdisk) closed by Joel Sherrill
fixed: No BSPs use -D in CFLAGS now. #3431 is a ticket to track some identified follow up work.
13:20 Ticket #3431 (Eliminate use of __ppc_generic and other PowerPC model defines in BSP ...) created by Joel Sherrill
Reduce use of PowerPC CPU model defines now in various PowerPC BSP …
11:53 Changeset in rtems-docs [9a91d77]5 by Malte Münch <mamu@…>
fix typo: extesion->extension

05/17/18:

19:59 GSoC/2018 edited by Danxue Huang
(diff)
18:35 Changeset in rtems-libbsd [e1d62e8]55-freebsd-126-freebsd-12 by Christian Mauderer <christian.mauderer@…>
waf: Fix python3 compatibility.
00:00 GSoC/2018 edited by udit agarwal
Added status update (diff)

05/16/18:

15:11 GSoC/2018 edited by Vijay Kumar Banerjee
(diff)
15:07 Changeset in rtems [eaf5bec]5 by Joel Sherrill <joel@…>
virtex5: Move -Dxxx to configure.ac Updates #3425.
15:01 Changeset in rtems [17f69e4]5 by Joel Sherrill <joel@…>
virtex4: Move -Dxxx to configure.ac Updates #3425.
15:01 Changeset in rtems [4afc1efa]5 by Joel Sherrill <joel@…>
virtex: Move -Dxxx to configure.ac Updates #3425.
14:58 Changeset in rtems [3d43c475]5 by Joel Sherrill <joel@…>
tqm8xx: Move -Dxxx to configure.ac Updates #3425.
14:57 Changeset in rtems [3274ec75]5 by Joel Sherrill <joel@…>
t32mppc: Move -Dxxx to configure.ac Updates #3425.
14:57 Changeset in rtems [c20001c4]5 by Joel Sherrill <joel@…>
ss555: Move -Dxxx to configure.ac Updates #3425.
14:55 Changeset in rtems [1a41818]5 by Joel Sherrill <joel@…>
qoriq: Move -Dxxx to configure.ac Updates #3425.
14:54 Changeset in rtems [b06e8d61]5 by Joel Sherrill <joel@…>
qemuppc: Move -Dxxx to configure.ac Updates #3425.
14:54 Changeset in rtems [c3b609d5]5 by Joel Sherrill <joel@…>
psim: Move -Dxxx to configure.ac Updates #3425.
14:54 Changeset in rtems [beb4468]5 by Joel Sherrill <joel@…>
mvme5500: Move -Dxxx to configure.ac Updates #3425.
14:50 Changeset in rtems [5aa8ac2]5 by Joel Sherrill <joel@…>
mvme3100: Move -Dxxx to configure.ac Updates #3425.
14:49 Changeset in rtems [a03f73c]5 by Joel Sherrill <joel@…>
mpc8260ads: Move -Dxxx to configure.ac Updates #3425.
14:49 Changeset in rtems [1e84462]5 by Joel Sherrill <joel@…>
mpc55xxevb: Move -Dxxx to configure.ac Updates #3425.
14:47 Changeset in rtems [2261ef2]5 by Joel Sherrill <joel@…>
motorola_powerpc: Move -Dxxx to configure.ac Updates #3425.
14:47 Changeset in rtems [01da0ac]5 by Joel Sherrill <joel@…>
haleakala: Move -Dxxx to configure.ac Updates #3425.
14:43 Changeset in rtems [b1b5afba]5 by Joel Sherrill <joel@…>
beatnik: Move -Dxxx to configure.ac Updates #3425.
14:13 GSoC/2018 edited by Amaan Cheval
Fix date on status update (diff)
14:11 GSoC/2018 edited by Gedare Bloom
status update for the week (diff)
13:08 GSoC/2018 edited by Amaan Cheval
Status update for x86_64 port on May 24 (diff)

05/15/18:

14:17 Changeset in rtems [9d62874]5 by Joel Sherrill <joel@…>
sparc64 BSPs: Hard define configuration required settings Updates #3425.
13:11 GSoC/2018 edited by Amaan Cheval
Update Github link for fork (diff)
09:21 Changeset in rtems [baee0dc5]5 by Martin Erik Werner <martinerikwerner.aac@…>
Fix and extend error message in posix timer test _Timespec_Equal_to() does not set errno, hence avoid using perror(), instead use fprintf() to stderr, and extend the error message to provide information about what the error is (measured timer value after re-arming is not equal to the configured interval), and how large of a difference was measured. Signed-off-by: Martin Erik Werner <martin.werner@…>

05/14/18:

20:11 Changeset in rtems [003b192]5 by Joel Sherrill <joel@…>
rtems-bsps: Change 4.12 to 5
19:26 Changeset in rtems-tools [70dac81]5 by Cillian O'Donnell <cpodonnell8@…>
covoar: Fix build path checks for multiple executables.

05/13/18:

13:09 GSoC/2018/EnhancementRuntimeTracing edited by Vidushi Vashishth
(diff)
13:07 GSoC/2018/EnhancementRuntimeTracing edited by Vidushi Vashishth
(diff)

05/11/18:

16:13 Changeset in rtems-docs [e3a477f]5 by Malte Münch <mamu@…>
c-user: Update manual organization in overview
05:25 Changeset in rtems-tools [d6ae3ae]5 by Chris Johns <chrisj@…>
tester/covoar: ExecutableInfo? C to C++ change.
05:21 Changeset in rtems-tools [1c85380]5 by Chris Johns <chrisj@…>
rtemstoolkit/dwarf: Change the address source line to signed so valid() works. Also add a check to valid where there must be source to be valid.
04:54 Changeset in rtems [2086948a]5 by Sebastian Huber <sebastian.huber@…>
riscv: Add dummy SMP support Update #3433.
04:25 Changeset in rtems [853c5ef]5 by Sebastian Huber <sebastian.huber@…>
build: Enable RISC-V SMP build Update #3433.
04:22 Changeset in rtems [d542af2e]5 by Sebastian Huber <sebastian.huber@…>
build: Fix RTEMS_ENABLE_RTEMSBSP() The riscv32 and riscv64 targets share a riscv source directory. The potential future powerpcspe and powerpc targets need this change as well.
02:24 Changeset in rtems-tools [881824f]5 by Chris Johns <chrisj@…>
tester/covoar: Remove all exit() calls and throw an rld::error exception. Add a suitable catch to covoar's main.
Note: See TracTimeline for information about the timeline view.