Timeline



02/17/20:

18:23 GSoC/2020 edited by Vijay Kumar Banerjee
Fix typo (diff)
08:47 Changeset in rtems-docs [d10e3b1]5 by Sebastian Huber <sebastian.huber@…>
c-user: Obsolete CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE The CONFIGURE_HAS_OWN_INIT_TASK_TABLE and CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE are the last *_HAS_OWN_* configuration options. These two options are probably unused, see also: * https://lists.rtems.org/pipermail/users/2019-April/033129.html * https://lists.rtems.org/pipermail/users/2019-April/033130.html Removing them simplifies the configuration. If there is a real user need which shows up after the removal, we can resurrect them on demand. Using CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE would have required the use of the undocumented CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME and CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE configuration options. Close #3874.
08:41 Changeset in rtems-docs [3738a74]5 by Sebastian Huber <sebastian.huber@…>
c-user: Obsolete CONFIGURE_HAS_OWN_INIT_TASK_TABLE The CONFIGURE_HAS_OWN_INIT_TASK_TABLE and CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE are the last *_HAS_OWN_* configuration options. These two options are probably unused, see also: * https://lists.rtems.org/pipermail/users/2019-April/033129.html * https://lists.rtems.org/pipermail/users/2019-April/033130.html Removing them simplifies the configuration. If there is a real user need which shows up after the removal, we can resurrect them on demand. Using CONFIGURE_HAS_OWN_INIT_TASK_TABLE would have required the use of the undocumented CONFIGURE_INIT_TASK_TABLE and CONFIGURE_INIT_TASK_TABLE_SIZE configuration options. Close #3873.
07:46 Ticket #3871 (Remove rtems_configuration_get_posix_api_configuration()) closed by Sebastian Huber <sebastian.huber@…>
fixed: In f613778/rtems: […]

02/15/20:

17:57 Changeset in rtems [1608221]5 by Sebastian Huber <sebastian.huber@…>
config: Add <rtems/confdefs/libio.h> Remove all comments and copyrightable content from the moved content. Use BSD-2-Clause license for new file. Update #3053. Update #3875.
13:16 Changeset in rtems [f45d0b2f]5 by Sebastian Huber <sebastian.huber@…>
config: Add <rtems/confdefs/bsp.h> Remove all comments and copyrightable content from the moved content. Use BSD-2-Clause license for new file. Update #3053. Update #3875.
13:00 Changeset in rtems [0f8e139e]5 by Sebastian Huber <sebastian.huber@…>
config: Add <rtems/confdefs/percpu.h> Remove comments and copyrightable content from the moved content. Use BSD-2-Clause for new file according to file history of <rtems/confdefs.h>. Update #3053. Update #3875.
11:07 Changeset in rtems [c7f748a]5 by Sebastian Huber <sebastian.huber@…>
config: Remove CONFIGURE_DISABLE_SMP_CONFIGURATION The CONFIGURE_DISABLE_SMP_CONFIGURATION configuration option and rtems_configuration_is_smp_enabled() were added during the SMP support development cycle as a workaround to fix some testsuite failures in SMP configurations. All use cases were replaced with tests for specific conditions. The configuration option and test macro were undocumented. Close #3876.
11:03 Changeset in rtems [ca82a603]5 by Sebastian Huber <sebastian.huber@…>
rtems: Change timer server task mode setting Use the non-preempt mode only in uni-processor configurations. Update #3876.
10:52 Changeset in rtems [e50e42b8]5 by Sebastian Huber <sebastian.huber@…>
score: _Scheduler_Is_non_preempt_mode_supported() If the non-preempt mode for threads is supported depends on the scheduler implementation. Add _Scheduler_Is_non_preempt_mode_supported() to indicate this. Update #3876.
10:23 Changeset in rtems [5b8d80d7]5 by Sebastian Huber <sebastian.huber@…>
config: CONFIGURE_INIT_TASK_INITIAL_MODES Determine the default for CONFIGURE_INIT_TASK_INITIAL_MODES depeding on whether RTEMS_SMP is defined or not. In the tests, use CONFIGURE_INIT_TASK_INITIAL_MODES to explicitly request RTEMS_NO_PREEMPT mode if necessary. Update #3876.
10:20 Ticket #3876 (Remove CONFIGURE_DISABLE_SMP_CONFIGURATION) created by Sebastian Huber
The CONFIGURE_DISABLE_SMP_CONFIGURATION configuration option and …
10:14 Changeset in rtems [51614bd5]5 by Sebastian Huber <sebastian.huber@…>
bsps/clock: Use _SMP_Get_processor_maximum() Use a specific test to enable the fast idle mode instead of using the rtems_configuration_is_smp_enabled() workaround. Update #3876.
10:09 Changeset in rtems [1ada3e55]5 by Sebastian Huber <sebastian.huber@…>
score: Add _SMP_Need_inter_processor_interrupts() Test for the proper system condition instead of using the rtems_configuration_is_smp_enabled() workaround. Update #3876.

02/14/20:

23:27 Changeset in rtems [166a80c3]5 by Konstantin Belousov <kib@…>
Consolidate read code for timecounters and fix possible overflow in bintime()/binuptime(). The algorithm to read the consistent snapshot of current timehand is repeated in each accessor, including the details proper rollup detection and synchronization with the writer. In fact there are only two different kind of readers: one for bintime()/binuptime() which has to do the in-place calculation, and another kind which fetches some member from struct timehand. Extract the logic into type-checked macros, GETTHBINTIME() for bintime calculation, and GETTHMEMBER() for safe read of a structure' member. This way, the synchronization is only written in bintime_off() and getthmember(). In bintime_off(), use overflow-safe calculation of th_scale * delta(timecounter). In tc_windup, pre-calculate the min delta value which overflows and require slow algorithm, into the new timehands th_large_delta member. This part with overflow fix was written by Bruce Evans. Reported by: Mark Millard <marklmi@…> (the overflow issue) Tested by: pho Discussed with: emaste Sponsored by: The FreeBSD Foundation (kib) MFC after: 3 weeks
23:27 Changeset in rtems [9fcf785d] by Konstantin Belousov <kib@…>
Consolidate read code for timecounters and fix possible overflow in bintime()/binuptime(). The algorithm to read the consistent snapshot of current timehand is repeated in each accessor, including the details proper rollup detection and synchronization with the writer. In fact there are only two different kind of readers: one for bintime()/binuptime() which has to do the in-place calculation, and another kind which fetches some member from struct timehand. Extract the logic into type-checked macros, GETTHBINTIME() for bintime calculation, and GETTHMEMBER() for safe read of a structure' member. This way, the synchronization is only written in bintime_off() and getthmember(). In bintime_off(), use overflow-safe calculation of th_scale * delta(timecounter). In tc_windup, pre-calculate the min delta value which overflows and require slow algorithm, into the new timehands th_large_delta member. This part with overflow fix was written by Bruce Evans. Reported by: Mark Millard <marklmi@…> (the overflow issue) Tested by: pho Discussed with: emaste Sponsored by: The FreeBSD Foundation (kib) MFC after: 3 weeks
18:09 Changeset in rtems [ba74ebde]5 by Sebastian Huber <sebastian.huber@…>
libio: Add POSIX user environment pointer to TCB The IO library used a POSIX key to store an optional POSIX user environment pointer. This pulled in the POSIX keys support in every application configuration. Add a user environment pointer to the thread control block (TCB) instead. Applications which do not need the POSIX user environment will just get an overhead of one pointer per thread. Close #3882.
16:24 Changeset in rtems [58864627]5 by Sebastian Huber <sebastian.huber@…>
config: Remove unused declaration and defines Update #3875.
16:20 Changeset in rtems [55a7316]5 by Sebastian Huber <sebastian.huber@…>
config: Add <rtems/confdefs/libpci.h> Derive copyright and license for new file form the file history. Update #3875.
15:50 Changeset in rtems [cadd8d1]5 by Sebastian Huber <sebastian.huber@…>
config: Add <rtems/confdefs/obsolete.h> Unify handling of obsolete configuration options. Remove comments and copyrightable content from the moved content. Use BSD-2-Clause license for new file. Update #3053. Update #3875.
14:51 Changeset in rtems [b89b442]5 by Sebastian Huber <sebastian.huber@…>
smpschededf02: Improve readability
13:13 Ticket #3875 (Split up confdefs.h in component based header files) created by Sebastian Huber
The confdefs.h header file is large, complex, and hard to review. …
13:04 Changeset in rtems [ba46b936]5 by Sebastian Huber <sebastian.huber@…>
config: Add _SMP_Is_enabled Move the is SMP enabled configuration constant out of the configuration table. Since this was the last configuration constant in rtems_configuration_table, remove this type. Update #3875.
12:57 Changeset in rtems [567455b6]5 by Sebastian Huber <sebastian.huber@…>
config: Add _SMP_Processor_configure_maximum Move the processor maximum configuration constant out of the configuration table. Update #3875.
12:48 Changeset in rtems [ad85c00]5 by Sebastian Huber <sebastian.huber@…>
config: Add _Workspace_Is_unified Move the unified workspace configuration constant out of the configuration table. Provide a default definition of the unified workspace constant. Update #3875.
12:43 Changeset in rtems [ba7b2df7]5 by Sebastian Huber <sebastian.huber@…>
config: Add _Workspace_Size Move the workspace size configuration constant out of the configuration table. Update #3875.
12:36 Changeset in rtems [5180762c]5 by Sebastian Huber <sebastian.huber@…>
config: Add _Thread_Idle_body Move the idle thread body configuration constant out of the configuration table. Provide a default definition of the idle thread body constant. Update #3875.
12:26 Changeset in rtems [c70d112]5 by Sebastian Huber <sebastian.huber@…>
config: Add _Thread_Idle_stack_size Move the idle thread stack size configuration constant out of the configuration table. Add THREAD_IDLE_STACK_SIZE_DEFAULT and use it to provide a default definition of the idle thread stack size constant. Update #3875.
11:58 Changeset in rtems [308a2e0f]5 by Sebastian Huber <sebastian.huber@…>
config: Add _Watchdog_Ticks_per_timeslice Move the ticks per timeslice configuration constant out of the configuration table. Add WATCHDOG_TICKS_PER_TIMESLICE_DEFAULT and use it to provide a default definition of the watchdog ticks per timeslice constant. Update #3875.
10:23 Changeset in rtems [dbb7ac6f]5 by Sebastian Huber <sebastian.huber@…>
posix: Remove <rtems/posix/ptimer.h> This file contained duplicate prototypes for standard POSIX functions declared in <time.h>.
10:20 Changeset in rtems [3b4795b4]5 by Sebastian Huber <sebastian.huber@…>
config: Remove CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE The CONFIGURE_HAS_OWN_INIT_TASK_TABLE and CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE are the last *_HAS_OWN_* configuration options. These two options are probably unused, see also: * https://lists.rtems.org/pipermail/users/2019-April/033129.html * https://lists.rtems.org/pipermail/users/2019-April/033130.html Removing them simplifies the configuration. If there is a real user need which shows up after the removal, we can resurrect them on demand. Using CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE would have required the use of the undocumented CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME and CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE configuration options. Update #3874.
09:05 Changeset in rtems [33d89af]5 by Sebastian Huber <sebastian.huber@…>
smpfatal09: Fix test case Update #3838.
08:48 Changeset in rtems [9bdb6aa3]5 by Sebastian Huber <sebastian.huber@…>
config: Bring back RTEMS 4.11 configuration table This improves API backward compatibility of RTEMS 5.1 to previous versions.
08:34 Changeset in rtems [a9bc7a5]5 by Sebastian Huber <sebastian.huber@…>
rtems: Simplify _RTEMS_tasks_Initialize_user_task() Due to the system initialization order, the _Thread_Global_constructor must be 0 in this function.
08:31 Changeset in rtems [9520ec3]5 by Sebastian Huber <sebastian.huber@…>
config: Simplify initialization task config With the removal of the CONFIGURE_HAS_OWN_INIT_TASK_TABLE configuration option at most one Classic API user initialization task can be configured. Provide an RTEMS API configuration table for backward compatibility. Update #3873.
07:40 Changeset in rtems [6b0873f]5 by Sebastian Huber <sebastian.huber@…>
config: Remove CONFIGURE_HAS_OWN_INIT_TASK_TABLE The CONFIGURE_HAS_OWN_INIT_TASK_TABLE and CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE are the last *_HAS_OWN_* configuration options. These two options are probably unused, see also: * https://lists.rtems.org/pipermail/users/2019-April/033129.html * https://lists.rtems.org/pipermail/users/2019-April/033130.html Removing them simplifies the configuration. If there is a real user need which shows up after the removal, we can resurrect them on demand. Using CONFIGURE_HAS_OWN_INIT_TASK_TABLE would have required the use of the undocumented CONFIGURE_INIT_TASK_TABLE and CONFIGURE_INIT_TASK_TABLE_SIZE configuration options. Update #3873.
07:09 Ticket #3874 (Remove CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE) created by Sebastian Huber
The CONFIGURE_HAS_OWN_INIT_TASK_TABLE and …
07:09 Ticket #3873 (Remove CONFIGURE_HAS_OWN_INIT_TASK_TABLE) created by Sebastian Huber
The CONFIGURE_HAS_OWN_INIT_TASK_TABLE and …
04:16 Changeset in rtems [fe09d8d]4.11 by Chris Johns <chrisj@…>
libcsupport/newlib: Call newlib's sinit to force reent initialisation - Newlib overtites any FILE pointers set in stdin, stdout or stderr. Closes #3870
03:16 Changeset in rtems [3f7ebdd]5 by Chris Johns <chrisj@…>
testsuite/newlib: Check newlib does not touch an assigned std FILE pointer Update #3870

02/13/20:

16:20 Changeset in rtems-docs [536b2d9]5 by Sebastian Huber <sebastian.huber@…>
c-user: Fix MPCI initialization prototype
16:16 Changeset in rtems [b8648bd]5 by Sebastian Huber <sebastian.huber@…>
config: Add _Watchdog_Microseconds_per_tick Move the microseconds per tick configuration constant out of the configuration table. Add WATCHDOG_MICROSECONDS_PER_TICK_DEFAULT and use it to provide a default definition of the watchdog ticks constants. Update #3875.
16:15 Changeset in rtems [c621c11b]5 by Sebastian Huber <sebastian.huber@…>
monitor: Use proper API for all config constants
16:08 Ticket #3872 (Add hook to stop merge commits into the master repository) created by Amar Takhar
A developer had an issue where they accidentally pushed local code …
15:56 Changeset in rtems [e85f168]5 by Sebastian Huber <sebastian.huber@…>
config: Remove unused configuration constant
15:20 Ticket #3871 (Remove rtems_configuration_get_posix_api_configuration()) created by Sebastian Huber
The corresponding data structure not longer exists. This function was …
15:15 Changeset in rtems [f613778]5 by Sebastian Huber <sebastian.huber@…>
Remove rtems_configuration_get_posix_api_configuration() The corresponding data structure not longer exists. This function was not tested and documented. Close #3871.
12:39 Changeset in rtems [f1baeb0]5 by Sebastian Huber <sebastian.huber@…>
bootstrap: Add special case for clean command The testsuites/ada/sptests/sp19/Makefile was added to document how sptest.adb is generated. However, this Makefile is in the way of ./bootstrap -c. Add an exception.
10:37 Changeset in rtems [2807d556]5 by Sebastian Huber <sebastian.huber@…>
score: Clean up wkspace.c Remove DEBUG_WORKSPACE support. There are better ways to trace the application. See Tracing chapter in the RTEMS User Manual. Remove superfluous includes. Change format.
10:34 Changeset in rtems [88c40ef8]5 by Sebastian Huber <sebastian.huber@…>
score: Remove unused _Workspace_Allocate_aligned()
09:56 Changeset in rtems-libbsd [24806ee]5-freebsd-126-freebsd-12 by Christian Mauderer <christian.mauderer@…>
regulator: Add to build. Update #3869.
09:56 Changeset in rtems-libbsd [e518d8c]5 by Christian Mauderer <christian.mauderer@…>
regulator: Add to build. Update #3869.
00:15 Changeset in rtems [3f732f0]5 by Joel Sherrill <joel@…>
objectdata.h, objectimpl.h: Change structure member from free to deallocate Without this change, rtems-libbsd does not compile. A macro turns free into bsd_free. Also the use of a standard library element as a program identifier is a violation of a MISRA rule. Turns out that was a good rule. :)

02/12/20:

14:09 Changeset in rtems [7006f08]5 by Dennis Pfau <dennis.pfau@…>
drvmgr: Fix determination of prefix in grlib uart driver drvmgr_get_dev_prefix returns 0 if a prefix was found. Therefore the if condition needs to check for 0, i.e. DRVMGR_OK.
07:53 Changeset in rtems [b900f507]5 by Sebastian Huber <sebastian.huber@…>
arm/xilinx-zynq: Split console driver files This avoids to pull in via printk() the Termios support which pulls in the file system support. This fixes a spconfig02 test failure.
07:01 Changeset in rtems-tools [629c330]5 by Sebastian Huber <sebastian.huber@…>
tester: Add qemu_opts_serial The realview_pbx_a9_qemu test configuration for Qemu produced no output due to wrong serial/monitor settings. Remove the serial/monitor settings from qemu_opts_base and move them to the new qemu_opts_serial.
06:27 Changeset in rtems-tools [0d66fd5]5 by Sebastian Huber <sebastian.huber@…>
tester: Use prefix for rtems_tools by default Commit 72c684eff2cd932b4948e21902680a93473340c3 removed the default value of rtems_tools. If the --rtems--tools option was omitted the rtems-test command printed lots of error: run.cfg:61: macro '%{rtems_tools}' not found error messages.
03:48 Ticket #3868 (newlib links breaks mingw build) closed by Chris Johns <chrisj@…>
fixed: In 22135c9/rtems-source-builder: […]

02/11/20:

06:32 Changeset in rtems-docs [c95724b]5 by Sebastian Huber <sebastian.huber@…>
c-user: Use contents instead of content The memory values are countable. Update #3843.
06:24 Changeset in rtems-docs [0cdd482]5 by Sebastian Huber <sebastian.huber@…>
c-user: Clarify CONFIGURE_DIRTY_MEMORY Update #3843.
05:44 Changeset in rtems [b2ddf4f7]5 by Sebastian Huber <sebastian.huber@…>
sptests/spregion_err01: Reduce memory demands Make functions and data static.
00:26 Ticket #3870 (libc_reent set up is broken) created by Chris Johns
The patch ... …

02/10/20:

20:54 Changeset in rtems-source-builder [22135c9]5 by Chris Johns <chrisj@…>
windows: Use GNU tar to unpack source - The bsdtar command does not handle symlinks cleanly, GNU tar does Closes #3868
20:52 Changeset in rtems-source-builder [6183c7d]5 by Chris Johns <chrisj@…>
rtems/5: Update to gdb-9.1 - This version fixes build issues on Windows (MinGW64)
19:20 Changeset in rtems-libbsd [18cc38e]5-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
epoch01: Update due to API changes Update #3815.
19:20 Changeset in rtems-libbsd [7606ec2]5 by Sebastian Huber <sebastian.huber@…>
epoch01: Update due to API changes Update #3815.
18:38 Changeset in rtems-libbsd [2bbeeb6]5 by Sebastian Huber <sebastian.huber@…>
syscalls01: Fix sporadic test failures
18:38 Changeset in rtems-libbsd [ca90847]5-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
syscalls01: Fix sporadic test failures
17:13 Changeset in rtems-libbsd [9d90575]5-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
EVENTHANDLER(9): Avoid multiple definition errors
17:13 Changeset in rtems-libbsd [eb5dc4f]5 by Sebastian Huber <sebastian.huber@…>
EVENTHANDLER(9): Avoid multiple definition errors
14:34 Changeset in rtems-libbsd [46b3858]5-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Update to FreeBSD stable/12 2020-02-10 Git mirror commit 0d1c391321b34b3025cf0e72f2231d836ff76da8.
12:49 Ticket #3843 (Add CONFIGURE_DIRTY_MEMORY) closed by Sebastian Huber <sebastian.huber@…>
fixed: In e57733a/rtems-docs: […]
12:48 Changeset in rtems-docs [76b3aea]5 by Sebastian Huber <sebastian.huber@…>
eng: Grammar fix Update #3199.
09:35 Changeset in rtems [adf7e753]5 by Christian Mauderer <christian.mauderer@…>
bsp/imx: Parse fdt pinctrl values and setup iomux Update #3869.
09:35 Changeset in rtems [b58f994]5 by Christian Mauderer <christian.mauderer@…>
bsp/imx: Support imx6ul iomux. Update #3869.
09:35 Changeset in rtems [d00d690]5 by Christian Mauderer <christian.mauderer@…>
bsp/imx: Allow gapless SPI transfers. This uses the tx-threshold to reduce gaps in SPI transmissions. Update #3869.
09:35 Changeset in rtems [9c7bffb]5 by Christian Mauderer <christian.mauderer@…>
bsp/imx: Use muxed mode for serials. Update #3869.
09:35 Changeset in rtems [65e51e9f]5 by Sebastian Huber <sebastian.huber@…>
bsp/imx: Increase device memory area The new area is used by the i.MX 6UltraLite for example. Update #3869.
09:35 Changeset in rtems [c561bf4c]5 by Christian Mauderer <christian.mauderer@…>
bsp/imx: Allow GIC in different device tree node. Update #3869.
09:35 Changeset in rtems [8854a2b5]5 by Sebastian Huber <sebastian.huber@…>
bsp/imx: Avoid hard-coded GIC base address Update #3869.
09:28 Changeset in rtems-docs [e57733a]5 by Sebastian Huber <sebastian.huber@…>
c-user: Document CONFIGURE_DIRTY_MEMORY Close #3843.
09:25 Ticket #3869 (Add i.MX6UL/ULL support to imx BSP) created by Christian Mauderer
00:47 Ticket #3868 (newlib links breaks mingw build) created by Chris Johns
The following patch in newlib adds links and Windows does not have …

02/09/20:

19:21 Changeset in rtems [f53473f]5 by G S Niteesh <gsnb.gn@…>
bsp/raspberrypi: Mini UART driver This patch adds driver for Mini UART present in Raspberry Pi 3 and above, this UART is currently used as the primary UART in these models. The Mini UART is similar to ns16550, this driver is built upon libchip/ns16550.
19:21 Changeset in rtems [5857e83c]5 by G S Niteesh <gsnb.gn@…>
libchip/ns16550: Allow user calculate baud divisor This patch will allow the user to pass a function to calculate the baud divisor. This will allow for more flexibility, since for some BSPs like raspberrypi, the calculation of baud divisor is different from what is in the current driver.
16:56 Changeset in rtems-source-builder [2c61edb]5 by Sebastian Huber <sebastian.huber@…>
5: Update to Binutils 2.34
10:19 Changeset in rtems-docs [b6c61e3]5 by Sebastian Huber <sebastian.huber@…>
eng: Mention test framework buffer configuration Update #3199.
10:09 Changeset in rtems-docs [45a0f65]5 by Sebastian Huber <sebastian.huber@…>
eng: Document test framework formatted output Update #3199.

02/07/20:

11:40 Changeset in rtems-libbsd [af291fa]5 by Jan Sommer <jan.sommer@…>
i386: Port to RTEMS - Update imported files to compile rtems-libbsd for i386 based BSPs - Currently does not support the option "dev_nic_e1000 = on"
11:40 Changeset in rtems-libbsd [9215a81]5 by Jan Sommer <jan.sommer@…>
i386: Add to build
11:40 Changeset in rtems-libbsd [0bd7949]5 by Jan Sommer <jan.sommer@…>
i386: Add missing files from FreeBSD - Files needed to make rtems-libbsd build again for i386

02/06/20:

14:24 Ticket #3865 (Fix linker set item declarations for small data area targets) closed by Sebastian Huber <sebastian.huber@…>
fixed: In a4b23d9/rtems-docs: […]
14:24 Ticket #3863 (Remove support for the BSP_ZERO_WORKSPACE_AUTOMATICALLY BSP option) closed by Sebastian Huber <sebastian.huber@…>
fixed: In df2dcdb/rtems-docs: […]
14:22 Ticket #3862 (Canonicalize CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 1d43a97/rtems: […]
06:14 Ticket #3867 (Rework RTEMS BSP and Driver Guide) created by Sebastian Huber
Define the intended audience for this guide. Mention this in the …

02/05/20:

09:43 Ticket #3866 (Add support for GCC 10 noinit attribute) created by Sebastian Huber
In GCC 10 there is a new common variable attribute noinit: …
08:05 Changeset in rtems-docs [a4b23d9]5 by Sebastian Huber <sebastian.huber@…>
c-user: Document new linker set macros Adjust copyright. Linker sets were introduced in 2015. Update #2408. Close #3865.
07:42 Changeset in rtems [9fac9f9]5 by Sebastian Huber <sebastian.huber@…>
score: Fix linker sets on small data area targets Update #3865.
07:39 Ticket #3865 (Fix linker set item declarations for small data area targets) created by Sebastian Huber
Some targets (e.g. 32-bit PowerPC) have a small-data area. Linker set …
06:18 Changeset in rtems-docs [4d2428a]5 by Sebastian Huber <sebastian.huber@…>
bsp-howto: Minor edit Update #2852.

02/04/20:

20:33 Ticket #3864 (rtems-tester does not work with gdb simulators) created by Joel Sherrill
It appears that something has broken with the rtems-tester on gdb …
16:04 Changeset in rtems-source-builder [c749492]5 by Sebastian Huber <sebastian.huber@…>
6: Update unstable RTEMS 6 tool chain Shorten the commit hash to be in line what the server returns.
15:45 Changeset in rtems-source-builder [5b21fd9]5 by Sebastian Huber <sebastian.huber@…>
6: Update unstable RTEMS 6 tool chain Use official GCC Git repository. Includes a fix for: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93543
14:26 Changeset in rtems [2d07ce6]5 by Sebastian Huber <sebastian.huber@…>
config: Add CONFIGURE_DIRTY_MEMORY Replace the BSP_DIRTY_MEMORY BSP option with a CONFIGURE_DIRTY_MEMORY configuration option. Update #3843.
12:56 Changeset in rtems [8ecbc38]5 by Sebastian Huber <sebastian.huber@…>
sysinit: Add RTEMS_SYSINIT_ZERO_MEMORY Use a dedicate system initialization step to zero the memory used for the workspace and C program heap. This avoids dead code in case CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY is not configured.
12:26 Changeset in rtems [6fad1f0a]5 by Sebastian Huber <sebastian.huber@…>
samples/iostream: Simplify configuration Remove CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY since it is not needed and just increases the boot time.
12:20 Changeset in rtems [1d43a97]5 by Sebastian Huber <sebastian.huber@…>
config: CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY Canonicalize CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY and use defined/undefined instead of TRUE/FALSE. Close #3862.
12:16 Changeset in rtems-docs [df2dcdb]5 by Sebastian Huber <sebastian.huber@…>
Remove BSP_ZERO_WORKSPACE_AUTOMATICALLY Close #3863.
12:12 Changeset in rtems [cadff8f7]5 by Sebastian Huber <sebastian.huber@…>
config: Remove BSP_ZERO_WORKSPACE_AUTOMATICALLY Update #3863.
12:02 Changeset in rtems-source-builder [f81b0a5]5 by Sebastian Huber <sebastian.huber@…>
6: Update unstable RTEMS 6 tool chain
10:56 Ticket #3863 (Remove support for the BSP_ZERO_WORKSPACE_AUTOMATICALLY BSP option) created by Sebastian Huber
BSPs had the option to enable the …
10:46 Ticket #3862 (Canonicalize CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY) created by Sebastian Huber
The CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY configuration option is …
10:24 Changeset in rtems [ccaec966]5 by Sebastian Huber <sebastian.huber@…>
libtests/malloc04: Fix typo Update #3838.
08:06 Changeset in rtems-docs [4205250]5 by Sebastian Huber <sebastian.huber@…>
bsp-howto: Rework system initialization chapter Update #2852. Update #3838.
06:52 Changeset in rtems-docs [928bf73]5 by Sebastian Huber <sebastian.huber@…>
bsp-howto: Remove obsolete information Remove obsolete information as well as information which is highly specific to a particular platform. Update #2852.
06:19 Changeset in rtems-docs [813ada5]5 by Sebastian Huber <sebastian.huber@…>
c-user: Update system initialization chapter Update #2408. Update #3838.
06:05 Ticket #3861 (Add CONFIGURE_VERBOSE_SYSTEM_INITIALIZATION) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 069bfac/rtems-docs: […]
05:23 Ticket #3861 (Add CONFIGURE_VERBOSE_SYSTEM_INITIALIZATION) created by Sebastian Huber
Add a configuration option to print some information during system …
05:21 Changeset in rtems-docs [069bfac]5 by Sebastian Huber <sebastian.huber@…>
c-user: Add CONFIGURE_VERBOSE_SYSTEM_INITIALIZATION Close #3861.
05:03 Changeset in rtems [1cd283a]5 by Sebastian Huber <sebastian.huber@…>
fstests/fsstatvfs: Include missing header file
04:43 Changeset in rtems-docs [d9d9c70]5 by Sebastian Huber <sebastian.huber@…>
Revert "common: Add URLs to manuals" This reverts commit 1fdd3cf83d154af66ad0edf5094d93075063c7e0 and some follow up changes.

02/03/20:

12:32 Changeset in rtems-libbsd [65a0afd]5 by Christian Mauderer <christian.mauderer@…>
dhcpcd: Pass config structure.
12:32 Changeset in rtems-libbsd [bbdb76e]5-freebsd-126-freebsd-12 by Christian Mauderer <christian.mauderer@…>
dhcpcd: Pass config structure.
10:05 Changeset in rtems-docs [d45c51a]5 by Vijay Kumar Banerjee <vijaykumar9597@…>
user/testing: Add coverage analysis instructions
Note: See TracTimeline for information about the timeline view.