Timeline



10/13/22:

15:41 Changeset in rtems-docs [e3cbdca] by Frank Kühndel <frank.kuehndel@…>
TFTPFS: Adding missing diagram
09:51 Ticket #4740 (Teach libdebugger to wait for GDB to connect and ask to continue) created by Kévin Le Gouguec
In #4739, Chris noted this snippet in the reproducer: […] Chris …
04:23 Changeset in rtems [97fce51] by Sebastian Huber <sebastian.huber@…>
build: Enable RISCV_BOOT_HARTID only for riscv
01:23 Changeset in rtems-docs [c9c5a17] by Chris Johns <chrisj@…>
README: Add a note about image tools

10/12/22:

15:56 Changeset in rtems-source-builder [652822f] by Ryan Long <ryan.long@…>
rtems-tools-6.cfg: Bump tools hash
13:44 Changeset in rtems-tools [40529bc] by Ryan Long <ryan.long@…>
_libelf_config.h: Add removed Cygwin code This code was removed for some reason. Without it, we are unable to build RTEMS with Cygwin.
12:53 Changeset in rtems-docs [355a65f] by Matt Joyce <matthew.joyce@…>
bsp-howto: Specify name of clock driver init func

10/11/22:

18:26 Changeset in rtems [8632d58] by Tadeusz Struk <tadeusz.struk@…>
libfdt: add fdt_get_property_by_offset_w helper Add a new fdt_get_property_by_offset_w helper function. It is a wrapper on fdt_get_property_by_offset that returns a writable pointer to a property at a given offset. Signed-off-by: Tadeusz Struk <tadeusz.struk@…> Message-Id: <20221011182611.116011-1-tadeusz.struk@…> Signed-off-by: David Gibson <david@…>
06:02 Changeset in rtems-central [6e057a0] by Sebastian Huber <sebastian.huber@…>
spec: Move to another acfg group
01:50 Changeset in rtems [fe104e39] by Chris Johns <chrisj@…>
libmisc/rtems-fdt: Fix missing error string - Coverity CID 1515930 issue Updates #4729

10/10/22:

06:54 Changeset in rtems-docs [c360e28] by Padmarao Begari <padmarao.begari@…>
user/bsps: Update riscv for PolarFire? SoC Update the riscv documentation for the Microchip PolarFire? SoC BSP variant including information about SMP test procedure for the Microchip PolarFire? Icicle Kit.
00:30 Ticket #4729 (Add 64bit address support to RTEMS FDT) closed by Chris Johns <chrisj@…>
fixed: In 40eb58f/rtems: […]

10/08/22:

17:19 Changeset in rtems-docs [f13489e] by Mohd Noor Aman <nooraman5718@…>
user/aarch64/raspberrypi4: Boot mechanism explained and updated config.txt

10/07/22:

13:57 Ticket #4739 (Fatal errors running GDB testcase against libdebugger) created by Kévin Le Gouguec
Hi, We observe fatal errors when replaying this GDB testcase against …
06:49 Changeset in rtems-central [28cee60] by Sebastian Huber <sebastian.huber@…>
spec: Use a recommendation for requirement texts Asserting that a requirement or constraint text does not contain words of a deny list is a too simple approach. Requirements in text form should be checked with a natural language processing tool.
05:32 Changeset in rtems-central [cafee5c] by Sebastian Huber <sebastian.huber@…>
spec-spec: Fix format
05:29 Changeset in rtems-central [f66fbd6] by Sebastian Huber <sebastian.huber@…>
spec-glossary: Remove white space
05:14 Changeset in rtems [46f08961] by Sebastian Huber <sebastian.huber@…>
psxrwlock01: Use an initilized lock for tests Close #4738.
05:04 Ticket #4738 (psxrwlock01 uses uninitialized lock that may or may not autoinitialize) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 46f08961/rtems: […]

10/06/22:

21:47 Changeset in rtems-docs [fe10830] by Mohd Noor Aman <nooraman5718@…>
raspberrypi4.rst: Documentation for the new AArch64 Raspberry pi 4B BSP This patch adds the relevant documentations required for booting the new BSP. JTAG support is added for debugging. I have built the HTML docs and verified them.
14:29 Ticket #4738 (psxrwlock01 uses uninitialized lock that may or may not autoinitialize) created by Lucian-Raul Silistru
When running psxrwlock01, the NULL argument check from …
13:01 Changeset in rtems-central [cadc2bd] by Sebastian Huber <sebastian.huber@…>
spec: Remove duplicate link
11:13 Changeset in rtems-docs [bd6ccad] by Sebastian Huber <sebastian.huber@…>
c-user: Fix references
07:25 Changeset in rtems-tools [2030770] by Sebastian Huber <sebastian.huber@…>
tester: Check for begin/end of test Check for "BEGIN OF TEST" and "END OF TEST" to not use other information blocks such as "END OF GCOV" to determine the test status.
07:19 Changeset in rtems-docs [2afb821] by Sebastian Huber <sebastian.huber@…>
c-user: CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZE Move CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZE to the general configuration options.
07:15 Changeset in rtems [0a9ba963] by Sebastian Huber <sebastian.huber@…>
config: CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZE Move CONFIGURE_MAXIMUM_THREAD_LOCAL_STORAGE_SIZE to the general configuration options.
07:00 Changeset in rtems [3bad6b8] by Sebastian Huber <sebastian.huber@…>
validation: Fix wording
06:47 Changeset in rtems [64fbeaa] by Sebastian Huber <sebastian.huber@…>
score: INTERNAL_ERROR_IDLE_THREAD_STACK_TOO_SMALL Ensure that the IDLE storage allocator did allocate a suffiently large area. Update #3835. Update #4524.
06:26 Changeset in rtems [6a820853] by Sebastian Huber <sebastian.huber@…>
stackchk01: Check CPU_STACK_MINIMUM_SIZE Ensure that the CPU_STACK_MINIMUM_SIZE is suffiently larger than the stack usage in simple applications.

10/05/22:

23:29 Changeset in rtems [b5db3f6] by Tadeusz Struk <tadeusz.struk@…>
libfdt: prevent integer overflow in fdt_next_tag Since fdt_next_tag() in a public API function all input parameters, including the fdt blob should not be trusted. It is possible to forge a blob with invalid property length that will cause integer overflow during offset calculation. To prevent that, validate the property length read from the blob before doing calculations. Signed-off-by: Tadeusz Struk <tadeusz.struk@…> Message-Id: <20221005232931.3016047-1-tadeusz.struk@…> Signed-off-by: David Gibson <david@…>
17:11 Changeset in rtems-central [1bfce22] by Sebastian Huber <sebastian.huber@…>
applconfig: Support glossary term plurals
16:13 Ticket #4737 (rtems_interrupt_is_pending behaviour expected between tc-intr-clear ...) created by Lucian-Raul Silistru
In testsuite tc-validation-intr there's a discrepancy between expected …
15:38 Ticket #4736 (RISC-V - ISR_stack allocation and usage by harts > ...) created by Lucian-Raul Silistru
When running SMP with CONFIGURE_MAXIMUM_PROCESSORS < total number of …
15:06 Ticket #4735 (riscv start.S for a single core on a multicore device) created by Lucian-Raul Silistru
We have run into a use-case where we are running non-SMP RTEMS on a …

10/04/22:

21:38 Changeset in rtems [b57c6541] by Mohd Noor Aman <nooraman5718@…>
bsp/aarch64: Add new Raspberry Pi 4B BSP This patch adds new Raspberry pi 4B AArch64 BSP to the RTEMS Family. Currently only LP64 ABI is supported. ILP32 is not supported. RAM starts from 0x80000 in 64Bit kernel mode and MMU from 0x0. All Raspberrypi Pi 4B models and Raspberry Pi 400 are supported. All the IRQs are similiar to the older Raspberry pi 2 ARM BSP. Raspberry Pi 4B has 2 types of UARTs. Only PL011 serial is supported currently. Mini-UART is not supported. Mini-UART is default UART on the board so it needs to be disabled by adding "dtoverlay=disable-bt" to the config.txt. No support for additional 4 PL011-UARTs on the board. The raspberrypi.h includes many of the address required for the future development of the RPi 4B BSP. This includes peripherals, ARM Timer, VideoCore? Timer, Watchdog, Mailbox, AUX, FIQs and IRQs.
08:44 Changeset in rtems [cc43dc3e] by Sebastian Huber <sebastian.huber@…>
rtems: Clarify application config info API Update #3993.
08:19 Tickets #4267,​4269 batch updated by Sebastian Huber <sebastian.huber@…>
fixed: In 0fc5c03/rtems-docs: […]
07:22 Changeset in rtems-central [fe6dc94] by Sebastian Huber <sebastian.huber@…>
sphinxcontent: Improve SphinxInterfaceMapper?
06:40 Changeset in rtems-central [70b2e59] by Sebastian Huber <sebastian.huber@…>
spec: Clarify interface domain description
06:30 Changeset in rtems-docs [1d9f9af] by Sebastian Huber <sebastian.huber@…>
eng: Add function implementation link role Update #3715.
06:29 Changeset in rtems-docs [c812323] by Sebastian Huber <sebastian.huber@…>
eng: Unify interface function and macro This allows the documentation of parameter and return types for macros. Update #3715.
06:26 Changeset in rtems-docs [4fddb23] by Sebastian Huber <sebastian.huber@…>
eng: Add memory benachmark type refinement Update #3715.
06:23 Changeset in rtems-docs [b55c8bf] by Sebastian Huber <sebastian.huber@…>
eng: Use type refinement for validation method Update #3715.
06:23 Changeset in rtems-docs [4966ed0] by Sebastian Huber <sebastian.huber@…>
eng: Remove appl config group member link role Update #3715.
06:22 Changeset in rtems-docs [c909228] by Sebastian Huber <sebastian.huber@…>
eng: Refine unspecified interfaces Update #3715.
06:12 Changeset in rtems-docs [889a498d] by Sebastian Huber <sebastian.huber@…>
eng: Remove interface container item type Update #3715.

09/30/22:

21:07 Ticket #4730 (rtems-source-builder doesn't generate tar archives for all packages ...) closed by Chris Johns <chrisj@…>
fixed: In 953b839/rtems-source-builder: […]
21:07 Ticket #4726 (RSB decode exception stops build) closed by Chris Johns <chrisj@…>
fixed: In e04c841/rtems-source-builder: […]
20:23 Ticket #4730 (rtems-source-builder doesn't generate tar archives for all packages ...) reopened by Chris Johns
The RSB is now not installing packages or internally staging them.
20:19 Ticket #4731 (rtems-source-builder doesn't generate tar archives for all packages ...) closed by Chris Johns <chrisj@…>
fixed: In d592ee8/rtems-source-builder: […]
20:19 Ticket #4734 (RSB decode exception stops build) closed by Chris Johns <chrisj@…>
fixed: In af0f612/rtems-source-builder: […]
14:14 Changeset in rtems-central [e2b5c0e] by Sebastian Huber <sebastian.huber@…>
spec: Improve /rtems/config/if/* documentation
12:58 Changeset in rtems-central [be6962d] by Sebastian Huber <sebastian.huber@…>
spec: Add types to macros
12:53 Changeset in rtems [c6bd860] by Sebastian Huber <sebastian.huber@…>
rtems: Fix format
12:52 Changeset in rtems-docs [c98307c] by Sebastian Huber <sebastian.huber@…>
c-user: Add types to macros
11:20 Changeset in rtems-central [5e39be7] by Sebastian Huber <sebastian.huber@…>
spec: Unify interface functions and macros
07:52 Changeset in rtems-docs [bb9c38d] by Sebastian Huber <sebastian.huber@…>
c-user: INTERNAL_ERROR_NO_MEMORY_FOR_IDLE_TASK_STORAGE Document this fatal error.
07:09 Changeset in rtems-source-builder [369b60a]5 by Chris Johns <chrisj@…>
rtems/bsps: Optionally support arch/bsp if used Updates #4717
07:07 Changeset in rtems-source-builder [953b839] by Chris Johns <chrisj@…>
sb/set-bulder: Fix installing builds when a single buildset - Always stage a build - Install if installable and outter most buildset instance Closes #4730
07:07 Changeset in rtems-source-builder [d592ee8]5 by Chris Johns <chrisj@…>
sb/set-bulder: Fix installing builds when a single buildset - Always stage a build - Install if installable and outter most buildset instance Closes #4731
07:01 Changeset in rtems-source-builder [af0f612]5 by Chris Johns <chrisj@…>
sb/execute: Fix incremental decoder with --dry-run Closes #4734
07:01 Changeset in rtems-source-builder [e04c841] by Chris Johns <chrisj@…>
sb/execute: Fix incremental decoder with --dry-run Closes #4726
06:06 Changeset in rtems [45ee958] by Sebastian Huber <sebastian.huber@…>
config: Add CONFIGURE_IDLE_TASK_STORAGE_SIZE By default, allocate the IDLE task storage areas from the RTEMS Workspace. This avoids having to estimate the thread-local storage size in the default configuration. Add the application configuration option CONFIGURE_IDLE_TASK_STORAGE_SIZE to request a static allocation of the task storage area for IDLE tasks. Update #3835. Update #4524.
02:24 Ticket #4731 (rtems-source-builder doesn't generate tar archives for all packages ...) reopened by Chris Johns
This has broken staging for multiple packages in a top level buildset.

09/29/22:

23:13 Ticket #4733 (Set top in RSB version.py) closed by Chris Johns <chrisj@…>
fixed: In 08ca387/rtems-source-builder: […]
23:13 Ticket #4731 (rtems-source-builder doesn't generate tar archives for all packages ...) closed by Chris Johns <chrisj@…>
fixed: In 6f1e914/rtems-source-builder: […]
23:11 Ticket #4734 (RSB decode exception stops build) created by Chris Johns
Cloned from #4726: ---- Building in a Rocky VM on FB 12 with 5 I …
23:06 Ticket #4732 (Set top in RSB version.py) closed by Chris Johns
fixed: https://git.rtems.org/rtems-source-builder/commit/?id=cfed1659a297cb0f95a03e053345962097aa02bf
17:49 Packages/LWIP edited by Kinsey Moore
swap to master branch for the time being for consistency (diff)
16:11 Changeset in rtems [1d2fab8] by Alan Cudmore <alan.cudmore@…>
bsps: Improve riscv console FDT parsing This fixes a problem with parsing the FDT compatible property by replacing the RISCV_CONSOLE_IS_COMPATIBLE macro with calls to the fdt_stringlist_contains function. The macro only works when the compatible FDT entry is a single string and not a list of strings. The new call will compare each item in the string list. Close #4728.
13:35 Changeset in rtems [829e489] by Sebastian Huber <sebastian.huber@…>
stackchk: Add rtems_stack_checker_iterate()
12:34 Changeset in rtems [03ddd89] by Sebastian Huber <sebastian.huber@…>
stackchk: Avoid internal header file
11:40 Ticket #4730 (rtems-source-builder doesn't generate tar archives for all packages ...) closed by Chris Johns <chrisj@…>
fixed: In 336f15c/rtems-source-builder: […]
10:57 Changeset in rtems-source-builder [d7fb57f] by Chris Johns <chrisj@…>
sb/execute: Use a decoder that maintains state aross blocks Update #4726
10:57 Changeset in rtems-source-builder [ddfcc32]5 by Chris Johns <chrisj@…>
sb/execute: Use a decoder that maintains state aross blocks Update #4734
08:57 Changeset in rtems-source-builder [08ca387]5 by Chris Johns <chrisj@…>
sb/version: Set top from external package Closes #4733
08:57 Changeset in rtems-source-builder [cfed165] by Chris Johns <chrisj@…>
sb/version: Set top from external package
08:51 Changeset in rtems-source-builder [336f15c] by Chris Johns <chrisj@…>
sb/set-builder: Fix staging and tar file generation with a single config build Closes #4730
08:51 Changeset in rtems-source-builder [6f1e914]5 by Chris Johns <chrisj@…>
sb/set-builder: Fix staging and tar file generation with a single config build Closes #4731
08:15 Ticket #4733 (Set top in RSB version.py) created by Chris Johns
Cloned from #4732: ---- Setting the top lets the code be used in …
08:15 Ticket #4732 (Set top in RSB version.py) created by Chris Johns
Setting the top lets the code be used in deployment to get the version …
08:12 Ticket #4731 (rtems-source-builder doesn't generate tar archives for all packages ...) created by Christian Mauderer
Cloned from #4730: ---- Like discussed in the following mailing list …
08:10 Changeset in rtems-docs [a6c426d] by Sebastian Huber <sebastian.huber@…>
c-user: INTERNAL_ERROR_IDLE_THREAD_STACK_TOO_SMALL Document this fatal error.
08:07 Changeset in rtems-docs [36ae26d] by Sebastian Huber <sebastian.huber@…>
c-user: INTERNAL_ERROR_IDLE_THREAD_CREATE_FAILED Document this fatal error.
08:05 Changeset in rtems-docs [6ea95ab] by Sebastian Huber <sebastian.huber@…>
c-user: INTERNAL_ERROR_RTEMS_INIT_TASK_CONSTRUCT_FAILED Document this fatal error.
08:02 Changeset in rtems-docs [5eae93c] by Sebastian Huber <sebastian.huber@…>
c-user: Add CONFIGURE_IDLE_TASK_STORAGE_SIZE
08:01 Changeset in rtems-docs [278550b] by Sebastian Huber <sebastian.huber@…>
c-user: Add type roles
07:49 Ticket #4730 (rtems-source-builder doesn't generate tar archives for all packages ...) created by Christian Mauderer
Like discussed in the following mailing list thread, the …
07:25 Changeset in rtems-central [97236fd] by Sebastian Huber <sebastian.huber@…>
spec: Add CONFIGURE_IDLE_TASK_STORAGE_SIZE
05:47 Changeset in rtems [40eb58f] by Chris Johns <chrisj@…>
libmisc/rtems-fdt: Update to support 64bit addresses - Add support to get the parent address and size cells - Provide support to get a reg prop address map - Change getting a set of properties to uintptr_t - Improve the debug mode of the ls command to print all props Closes #4729
05:35 Ticket #4729 (Add 64bit address support to RTEMS FDT) created by Chris Johns
RTEMS's FDT wrapper does not handle the reg property correctly. …
01:31 Ticket #4728 (RISC-V console device tree parsing fails with a list of properties) created by Alan Cudmore
The riscv console configuration code uses a macro: #define …
Note: See TracTimeline for information about the timeline view.