Timeline



02/23/17:

23:51 Changeset in rtems [6dbbd277]5 by David Gibson <david@…>
libfdt: Remove undefined behaviour setting empty properties The standard way of setting an empty property using libfdt is: fdt_setprop(fdt, nodeoffset, propname, NULL, 0); However, the implementation of this includes an unconditional: memcpy(prop->data, NULL, 0); Which although it will be a no-op (which is what we want) on many platforms is technically undefined behaviour. Correct this, so that when passing a 0 length, passing a NULL pointer as the value to fdt_setprop() is definitely safe. This should quiet static checkers which complain about this. Signed-off-by: David Gibson <david@…>
15:33 Changeset in rtems [f600458d]5 by Martin Aberg <maberg@…>
leon, clock: new driver manager clock driver - Compatible with SMP - Selects timecounter depending on features available - Fixes problem with time going to fast on SMP This is an implementation of the RTEMS "clockdrv_shell" interface for LEON2/3/4 systems using the Driver Manager. It is clock hardware agnostic and compatible with SMP and UP. Availability of free running counters is probed and selected as needed. GR740: RTEMS TESTSUITE FAILURE SUMMARY Result Test ExecRes? ConsoleRes? ExitCode1 ExitCode2 FAIL: ./fstests/imfs_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/jffs2_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/mdosfs_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/mimfs_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/mrfs_fsscandir01 OK FAIL 5 0 FAIL: ./psxtests/psxshm01 FAIL FAIL N/A N/A FAIL: ./psxtests/psxshm02 FAIL FAIL N/A N/A FAIL: ./sptests/spinternalerror01 OK N/A -559038737 1611526157 FAIL: ./sptests/sptimecounter01 OK N/A 5 0 SUMMARY Tests failing: 9 Tests successful: 578 --- GR712RC: RTEMS TESTSUITE FAILURE SUMMARY Result Test ExecRes? ConsoleRes? ExitCode1 ExitCode2 FAIL: ./smptests/smpipi01 FAIL FAIL N/A N/A FAIL: ./smptests/smpthreadlife01 FAIL FAIL N/A N/A FAIL: ./fstests/imfs_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/jffs2_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/mdosfs_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/mimfs_fsscandir01 OK FAIL 5 0 FAIL: ./fstests/mrfs_fsscandir01 OK FAIL 5 0 FAIL: ./psxtests/psxshm01 FAIL FAIL N/A N/A FAIL: ./psxtests/psxshm02 FAIL FAIL N/A N/A FAIL: ./sptests/spinternalerror01 OK N/A -559038737 1611526157 FAIL: ./sptests/sptimecounter01 OK N/A 5 0 SUMMARY Tests failing: 11 Tests successful: 576
14:43 Changeset in rtems [a165a96]5 by Sebastian Huber <sebastian.huber@…>
termios: Make write POSIX compatible Currently only blocking read/write operations are implemented. A blocking write must transfer at least one character. It should not wait for the device for the second character and so on. Close #2917.
14:19 Changeset in rtems [c41b47e3]5 by Sebastian Huber <sebastian.huber@…>
termios: Introduce doTransmit()
13:04 Changeset in rtems [5244d31e]5 by Sebastian Huber <sebastian.huber@…>
termios: Simplify oproc() Call rtems_termios_puts() only once. Adjust column in one place.
10:35 Changeset in rtems [9fa0f54]5 by Sebastian Huber <sebastian.huber@…>
termios: Change receive callback invocation Call the receive callback in case a read will succeed without to block. This enables the use of the receive callback for a poll() and select() support. Increase raw input buffer size to allow buffering of one line. Close #2916.
09:35 Changeset in rtems [9f69ac2]5 by Sebastian Huber <sebastian.huber@…>
termios: Ignore carriage return early if desired In case carriage return characters should be ignored in the input (IGNCR), then drop them early before they reach the raw input buffer. This makes it easier to calculate the content size of the raw input buffer.
09:06 Changeset in rtems [0e8d2055]4.11 by Sebastian Huber <sebastian.huber@…>
termios: Protect raw input buffer with device lock Use the device lock to protect the raw input buffer management, e.g. tail, head and buffer content updates. Update #2914.
09:06 Changeset in rtems [bb087cb0]5 by Sebastian Huber <sebastian.huber@…>
termios: Protect raw input buffer with device lock Use the device lock to protect the raw input buffer management, e.g. tail, head and buffer content updates. Close #2914.
08:38 Changeset in rtems [49d8f653]5 by Sebastian Huber <sebastian.huber@…>
termios: Change tty_rcvwakeup to bool Optimize callout invocation check.
08:12 Changeset in rtems [35a3d815]4.11 by Sebastian Huber <sebastian.huber@…>
termios: Simplify rtems_termios_read_tty() Remove dead code. Update #2914.
08:12 Changeset in rtems [d60c2d79]5 by Sebastian Huber <sebastian.huber@…>
termios: Simplify rtems_termios_read_tty() Remove dead code. Update #2914.
00:34 Changeset in rtems [638948c]5 by Colin Ian King <colin.king@…>
jffs2: fix spelling mistake: "requestied" -> "requested" trivial fix to spelling mistake in JFFS2_ERROR message Signed-off-by: Colin Ian King <colin.king@…> [Brian: also fix 'an' -> 'a'] Signed-off-by: Brian Norris <computersforpeace@…>

02/22/17:

10:49 Changeset in rtems-libbsd [5e093a5]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
SLEEPQUEUE(9): Fix absolute timeouts The FreeBSD kernel timeouts are always based on the uptime. Thus, we have to use the relative watchdog. C_ABSOLUTE just means that the timeout value is already an uptime value. https://lists.freebsd.org/pipermail/freebsd-hackers/2017-February/050572.html
08:01 Changeset in rtems [11f0d52]5 by Sebastian Huber <sebastian.huber@…>
bsp/xilinx-zynq: Add interrupt support to UART
06:09 Changeset in rtems-docs [c1dddac]5 by Sebastian Huber <sebastian.huber@…>
Move extensions to common conf.py

02/21/17:

14:26 Changeset in rtems-libbsd [045ff6e]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Add poll() and select() support for Termios
14:25 Changeset in rtems [3398602]5 by Sebastian Huber <sebastian.huber@…>
Add rtems_interrupt_server_request_submit() This function may be used to do a two-step interrupt processing. The first step is done in interrupt context which calls this function. The second step is then done in the context of the interrupt server.
11:57 Changeset in rtems-libbsd [631fb98]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
netshell01: Add license, fix format
11:10 Changeset in rtems [c54769e7]5 by Sebastian Huber <sebastian.huber@…>
spextensions01: Fix extension create order Update #2692.
09:30 Changeset in rtems [6b2fcc4]5 by Sebastian Huber <sebastian.huber@…>
bsp/xilinx-zynq: Use new Termios device driver
08:14 Changeset in rtems [dfa86338]5 by Javier Jalle <javier.jalle@…>
leon, l2cache: add GR740 L2-Cache driver
08:01 Changeset in rtems [5bfeddc0]5 by Sebastian Huber <sebastian.huber@…>
termios: Add kqueue() and poll() support Real implementation is provided by libbsd.
07:58 Changeset in rtems [c833970]5 by Sebastian Huber <sebastian.huber@…>
score: Add RTEMS_WEAK_ALIAS()
07:34 Changeset in rtems-libbsd [2a5d001]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
C11/C++11 are the default for the RTEMS 4.12 GCC
07:34 Changeset in rtems-libbsd [284ff16]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
Update due to configuration API changes

02/20/17:

06:23 Changeset in rtems-docs [7ba0479]5 by Sebastian Huber <sebastian.huber@…>
Render math via JavaScript? in HTML output

02/15/17:

15:51 Changeset in rtems [3e948cc]5 by Javier Jalle <javier.jalle@…>
leon, ambapp: Added GRIOMMU driver to ambapp ids
14:51 Changeset in rtems-docs [51392ac]5 by Sebastian Huber <sebastian.huber@…>
c-user: Fix linker set code blocks
14:33 Ticket #2770 (Missing documentation for RTEMS_LINKER_ROSET_CONTENT and ...) closed by Sebastian Huber
fixed
14:10 Ticket #2826 (arm_cp15_get_translation_table_base_control_register warning.) closed by Sebastian Huber
fixed: [444cb5cd23872182f4a2fac3ca25cdbf79a49bff/rtems]
14:07 Changeset in rtems-docs [3b9b8a0]5 by Sebastian Huber <sebastian.huber@…>
c-user: Document linker set content Close #2770.
13:53 Ticket #2388 ([PATCH] [NFS client] Remove old CVS keywords) closed by Nick Withers <nick.withers@…>
fixed: In 7e0a02a70fc8f49562e413d6d0a52af28a777c8c/rtems: […]
13:42 Ticket #2758 (SDCard driver for QoriQ) closed by Sebastian Huber
wontfix: The FreeBSD driver available via libbsd should be used for the QorIQ BSPs.
13:21 Ticket #2494 (Remove task variables) closed by Sebastian Huber
fixed
13:19 Ticket #2401 (ARMv7M: Default exception handler doesn't support FPU) closed by Sudarshan Rajagopalan <sudarshan.rajagopalan@…>
fixed: In 5b5ef4e479dbb437b96601e3ef4e5fc508e22dd3/rtems: […]
12:41 Changeset in rtems [7318e7db]5 by Sebastian Huber <sebastian.huber@…>
bsp/lpc24xx: Remove debug output
12:39 Changeset in rtems [6afeeda]5 by Sebastian Huber <sebastian.huber@…>
bsps/powerpc: Fix warnings
12:28 Changeset in rtems [f6f764c1]5 by Sebastian Huber <sebastian.huber@…>
bsps/powerpc: Fix warnings
12:22 Changeset in rtems [c847451b]5 by Sebastian Huber <sebastian.huber@…>
sapi: Fix warnings
12:14 Changeset in rtems [32292d5d]5 by Sebastian Huber <sebastian.huber@…>
bsps/powerpc: Fix warning
12:05 Changeset in rtems [661be20]5 by Sebastian Huber <sebastian.huber@…>
shell: Fix warnings
11:57 Changeset in rtems [bc744618]5 by Sebastian Huber <sebastian.huber@…>
bsps/sparc: Fix warnings
10:19 Changeset in rtems [f5cf2fe]5 by Sebastian Huber <sebastian.huber@…>
libdl: Fix warning
10:15 Ticket #2912 (libdebugger: control reaches end of non-void function) created by Sebastian Huber
../../../../../../rtems/c/src/../../cpukit/libdebugger/rtems-debugger-s …
10:14 Changeset in rtems [31ba1f21]5 by Javier Jalle <javier.jalle@…>
leon, grpci2: prepare for GRPCI2DMA driver
10:12 Changeset in rtems [444cb5c]5 by Sebastian Huber <sebastian.huber@…>
bsps/arm: Fix prototype
10:09 Changeset in rtems [73f8d93]5 by Sebastian Huber <sebastian.huber@…>
bsps/powerpc: Fix warnings
10:09 Changeset in rtems [7a462cc]5 by Sebastian Huber <sebastian.huber@…>
score: Fix warning
10:09 Changeset in rtems [8e45d55]5 by Javier Jalle <javier.jalle@…>
leon, grpci2: Make driver SMP safe
10:05 Changeset in rtems [0c23dd5]5 by Javier Jalle <javier.jalle@…>
leon, gr740: fix device registration for GRPCI2 core

02/14/17:

19:49 Ticket #2911 (RSB Requirements for Ubuntu and Raspbian) created by Joel Sherrill
I installed on Debian Jessie and it takes a union of the two to work. …
19:44 Ticket #2910 (RSB docs for Mavericks has Incorrect Formatting Markup) created by Joel Sherrill
This section of the RSB has "+sb_check+" which I assume is supposed to …
10:55 Changeset in rtems-libbsd [a739190]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
SYSCTL(8): Fix command line option processing
10:48 Changeset in rtems-libbsd [a8e84c6]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
DEVICE(9): Avoid NULL pointer access
10:30 Changeset in rtems [611f9262]5 by Sebastian Huber <sebastian.huber@…>
psxtests: Fix warnings
10:14 Changeset in rtems-docs [fad46ff]5 by Sebastian Huber <sebastian.huber@…>
shell: Update task command Update #2858.
10:10 Changeset in rtems [468e9a4]5 by Sebastian Huber <sebastian.huber@…>
monitor: Print short and long task names Print wait object identifier only if it exists. Update #2858.
09:21 Ticket #2894 (Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS) closed by Sebastian Huber
fixed: [1d073c538527a196cc35dab9d4ff6892e70d770d/rtems-docs]
09:18 Changeset in rtems-docs [1d073c5]5 by Sebastian Huber <sebastian.huber@…>
c-user: CONFIGURE_MAXIMUM_PROCESSORS Update #2894.
09:05 Changeset in rtems [71ac0a6]5 by Sebastian Huber <sebastian.huber@…>
spqreslib: Remove invalid test cases
09:03 Changeset in rtems [ad25f10]5 by Sebastian Huber <sebastian.huber@…>
spcbssched02: Remove invalid test cases
08:57 Changeset in rtems [ecf53c8]5 by Sebastian Huber <sebastian.huber@…>
psxsem01: Fix warning
08:45 Ticket #2895 (Prefix the confdefs.h internal defines with an underscore) closed by Sebastian Huber
fixed: [07d71279b46142147f73b00ea8b1731e868e484a/rtems]
07:58 Changeset in rtems [c341463]5 by Sebastian Huber <sebastian.huber@…>
tmacros.h: Fix print defines
07:54 Changeset in rtems [9333de2f]5 by Sebastian Huber <sebastian.huber@…>
sppagesize: Include missing header file
07:52 Ticket #2909 (xz: Support for 64-bit CRC is build although XZ_USE_CRC64 is not defined) created by Sebastian Huber
This leads to: …
07:46 Changeset in rtems [5eee718]5 by Sebastian Huber <sebastian.huber@…>
shell: Fix warnings
07:42 Changeset in rtems [6dbbafc6]5 by Sebastian Huber <sebastian.huber@…>
score: Fix warning in _Thread_Set_name()
07:09 Ticket #2908 (FAT filename comparison is broken) closed by Sebastian Huber <sebastian.huber@…>
fixed: In d9c6542970eb0a7106499e5e43750cca8161d96b/rtems: […]

02/13/17:

14:13 Changeset in rtems [04684cb]4.11 by Sebastian Huber <sebastian.huber@…>
dosfs: Fix msdos_find_file_in_directory() For a filename match the entry must match without anything remaining. Update #2908.
14:13 Changeset in rtems [d9c65429]5 by Sebastian Huber <sebastian.huber@…>
dosfs: Fix msdos_find_file_in_directory() For a filename match the entry must match without anything remaining. Close #2908.
14:12 Ticket #2908 (FAT filename comparison is broken) created by Sebastian Huber
For a filename match the entry must match without anything remaining.
09:16 Changeset in rtems [f46f5f84]5 by Javier Jalle <javier.jalle@…>
leon, grpci2: latency timer user configurable (default 64)
07:38 Changeset in rtems-libbsd [2c4840f]55-freebsd-126-freebsd-12 by Sebastian Huber <sebastian.huber@…>
README.waf: Change BSP, add QEMU command line

02/11/17:

04:45 Boards edited by Chris Johns
Add detail about Board pages. (diff)

02/10/17:

18:50 Ticket #2907 (BSP Script v4.11 Fix) created by Joey DiGiorgio
After some discussions on the mailing list, it seems that the …

02/09/17:

21:16 Ticket #2906 (rtems-doc waf configure does not detect sphinxcontrib.bibtex status) created by Chris Johns
The rtems-docs requires the Sphinx contribution extension for bibtex …
13:09 Changeset in rtems [93c5e63]5 by Javier Jalle <javier.jalle@…>
leon, grpci2dma: add GR740 PCI DMA driver
02:13 Boards/Zynq - Zedboard edited by Chris Johns
(diff)
02:12 Boards/Zynq - Zedboard edited by Chris Johns
Whitespace clean up. (diff)
02:10 Boards/Zynq - Zedboard edited by Chris Johns
Add an example session. (diff)
01:56 Boards/Zynq - Zedboard edited by Chris Johns
Add RTEMS application details. (diff)
01:43 Boards/Zynq - Zedboard edited by Chris Johns
Add mount/umount. (diff)
01:41 Boards/Zynq - Zedboard edited by Chris Johns
Add uEnv.txt details. (diff)
Note: See TracTimeline for information about the timeline view.