Timeline



04/04/16:

08:13 Changeset in rtems [3570ec6]5 by Sebastian Huber <sebastian.huber@…>
rtems: Avoid Giant lock for partitions Use an ISR lock to protect the partition state changes. Update #2555.
07:42 Changeset in rtems [84f5c0a]5 by Sebastian Huber <sebastian.huber@…>
score: Use red-black tree for active global objects Use a red-black tree to lookup active global objects by identifier or name. Update #2555.
07:37 Changeset in rtems [d995a263]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Append() This function is not used in the score. Update #2555.
07:36 Changeset in rtems [3bf2bcc8]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Get() This function is not used in the score. Update #2555.
07:29 Changeset in rtems [cd900523]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Get_with_empty_check() This function is not used in the score. Update #2555.
07:24 Changeset in rtems [c130387]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Prepend_with_empty_check() This function is not used in the score. Update #2555.
06:46 Changeset in rtems [88f4157c]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Append_with_empty_check() This function is not used in the score. Update #2555.
06:18 Changeset in rtems [9ea69dee]5 by Sebastian Huber <sebastian.huber@…>
score: Add node map to _RBTree_Find_inline()
04:57 Changeset in rtems [223fff46]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Extract() This function is not used in the score. Update #2555.
04:52 Changeset in rtems [6406b69]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Prepend() This function is not used in the score. Update #2555.
04:47 Changeset in rtems [7d21700]5 by Sebastian Huber <sebastian.huber@…>
posix: Use proper lock for signals
04:17 Changeset in rtems [b0354b0e]5 by Sebastian Huber <sebastian.huber@…>
score: Delete _Chain_Insert() This function is not used in the score. Update #2555.
04:17 Changeset in rtems [84dc9df]5 by Sebastian Huber <sebastian.huber@…>
score: Use red-black tree for active MP proxies Update #2555.
01:48 Ticket #2683 (Configuration table's smp_enabled conditional on RTEMS_SMP) created by Chris Johns
The rtems_configuration_table has: […] I would like the …

04/03/16:

19:10 Changeset in rtems-source-builder [21650e5]4.104.95 by Joel Sherrill <joel@…>
4.12/rtems-default.bset: Update to gcc 6.20160327 and newlib-2.4.0
19:10 Changeset in rtems-source-builder [f96fdc6]4.104.95 by Joel Sherrill <joel@…>
4.12/rtems-moxie.bset: Include dtc needed by gdb build
06:26 Changeset in rtems-tools [6c94148]4.105 by Chris Johns <chrisj@…>
linkers: Demangle the C++ labels in the .ctors/.dtors sections. Show user friendly labels for the C++ constructors and destructors.
05:42 Changeset in rtems-tools [c81066f]4.105 by Chris Johns <chrisj@…>
linkers: Add a tool to show RTEMS executable information.
05:41 Changeset in rtems-tools [635a28f]4.105 by Chris Johns <chrisj@…>
rtemstoolkit: Add a buffer helper class to insert and extract data.
05:39 Changeset in rtems-tools [8dc2772]4.105 by Chris Johns <chrisj@…>
rtemstoolkit: Add the address to the section.
05:38 Changeset in rtems-tools [2e97351]4.105 by Chris Johns <chrisj@…>
rtemstoolkit: Add an address table of symbols key by the symbol address. This is useful if you need to look up a symbol based on its address.
05:37 Changeset in rtems-tools [0c0b2d4]4.105 by Chris Johns <chrisj@…>
rtemstoolkit: Add version number parsing to get major, minor, revision. Add support to return the major, minor or revision numbers as numbers.

04/01/16:

17:25 Ticket #2682 (Moving Windows Tools to New Host) created by Joel Sherrill
Windows tools on MSYS2 build and work fine locally. We tried to tar up …
13:10 Changeset in rtems [6ca60e5d]5 by Sebastian Huber <sebastian.huber@…>
score: Delete MP support for RW locks MP support was not implemented.
12:29 Changeset in rtems [fb5bc64d]5 by Kirill A. Shutemov <kirill.shutemov@…>
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time ago with promise that one day it will be possible to implement page cache with bigger chunks than PAGE_SIZE. This promise never materialized. And unlikely will. We have many places where PAGE_CACHE_SIZE assumed to be equal to PAGE_SIZE. And it's constant source of confusion on whether PAGE_CACHE_* or PAGE_* constant should be used in a particular case, especially on the border between fs and mm. Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much breakage to be doable. Let's stop pretending that pages in page cache are special. They are not. The changes are pretty straight-forward: - <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>; - <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>; - PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN}; - page_cache_get() -> get_page(); - page_cache_release() -> put_page(); This patch contains automated changes generated with coccinelle using script below. For some reason, coccinelle doesn't patch header files. I've called spatch for them manually. The only adjustment after coccinelle is revert of changes to PAGE_CAHCE_ALIGN definition: we are going to drop it later. There are few places in the code where coccinelle didn't reach. I'll fix them manually in a separate patch. Comments and documentation also will be addressed with the separate patch. virtual patch @@ expression E; @@ - E << (PAGE_CACHE_SHIFT - PAGE_SHIFT) + E @@ expression E; @@ - E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) + E @@ @@ - PAGE_CACHE_SHIFT + PAGE_SHIFT @@ @@ - PAGE_CACHE_SIZE + PAGE_SIZE @@ @@ - PAGE_CACHE_MASK + PAGE_MASK @@ expression E; @@ - PAGE_CACHE_ALIGN(E) + PAGE_ALIGN(E) @@ expression E; @@ - page_cache_get(E) + get_page(E) @@ expression E; @@ - page_cache_release(E) + put_page(E) Signed-off-by: Kirill A. Shutemov <kirill.shutemov@…> Acked-by: Michal Hocko <mhocko@…> Signed-off-by: Linus Torvalds <torvalds@…>
09:38 Changeset in rtems [8f96581]5 by Sebastian Huber <sebastian.huber@…>
score: Rework MP thread queue callout support The thread queue implementation was heavily reworked to support SMP. This broke the multiprocessing support of the thread queues. This is fixed by this patch. A thread proxy is unblocked due to three reasons 1) timeout, 2) request satisfaction, and 3) extraction. In case 1) no MPCI message must be sent. This is ensured via the _Thread_queue_MP_callout_do_nothing() callout set during _Thread_MP_Allocate_proxy(). In case 2) and 3) an MPCI message must be sent. In case we interrupt the blocking operation during _Thread_queue_Enqueue_critical(), then this message must be sent by the blocking thread. For this the new fields Thread_Proxy_control::thread_queue_callout and Thread_Proxy_control::thread_queue_id are used. Delete the individual API MP callout types and use Thread_queue_MP_callout throughout. This type is only defined in multiprocessing configurations. Prefix the multiprocessing parameters with mp_ to ease code review. Multiprocessing specific parameters are optional due to use of a similar macro pattern. There is no overhead for non-multiprocessing configurations.
07:26 Ticket #2681 (GDB on Windows (x86_64-w64-mingw32) does not work in cmd.exe) created by Chris Johns
A x86_64-w64-mingw32 gdb for RTEMS targets does not work in cmd.exe. …
06:33 Changeset in rtems [d2c8693]5 by Sebastian Huber <sebastian.huber@…>
bsp/atsam: Fix mbuf allocation
01:20 Changeset in rtems-docs [ea0777e]4.115 by Chris Johns <chrisj@…>
Review changes from Chris Mayfield.

03/31/16:

11:31 Changeset in rtems [9eaf564]5 by Sebastian Huber <sebastian.huber@…>
score: Add and use _RBTree_Insert_inline()
11:30 Changeset in rtems [97127aa]5 by Sebastian Huber <sebastian.huber@…>
score: Add and use _RBTree_Find_inline()
07:49 GSoC/2016 edited by sai charan sane
(diff)
07:49 GSoC/2016 edited by sai charan sane
(diff)
01:33 GSoC/2016 edited by Wonjun Hwang
(diff)

03/30/16:

19:04 Changeset in rtems [d33ab82]5 by Joel Sherrill <joel@…>
v850/gdbv850sim/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [f7e2ceb]5 by Joel Sherrill <joel@…>
sparc64/usiii/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [c412142]5 by Joel Sherrill <joel@…>
sparc64/niagara/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [23e5746]5 by Joel Sherrill <joel@…>
sparc/erc32/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [be13774]5 by Joel Sherrill <joel@…>
sh/shared/console.c: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [64f3cf8a]5 by Joel Sherrill <joel@…>
sh/gensh2/startup/hw_init.c: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [09a21c5]5 by Joel Sherrill <joel@…>
powerpc/virtex5/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [bea9a25]5 by Joel Sherrill <joel@…>
powerpc/virtex4/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [c9705f0]5 by Joel Sherrill <joel@…>
powerpc/virtex/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [d379a629]5 by Joel Sherrill <joel@…>
powerpc/qemuppc/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [c5ecb95]5 by Joel Sherrill <joel@…>
powerpc/psim/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [bf820a6f]5 by Joel Sherrill <joel@…>
powerpc/haleakala/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [ff9f426]5 by Joel Sherrill <joel@…>
moxie/moxiesim/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [7054fccf]5 by Joel Sherrill <joel@…>
mips/rbtx4938/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [fd29877]5 by Joel Sherrill <joel@…>
mips/rbtx4925/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [fd437ab]5 by Joel Sherrill <joel@…>
mips/malta/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [aafd818]5 by Joel Sherrill <joel@…>
mips/jmr3904/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [bbea36c]5 by Joel Sherrill <joel@…>
mips/hurricane/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [241c1b8]5 by Joel Sherrill <joel@…>
mips/csb350/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [482fdd55]5 by Joel Sherrill <joel@…>
m68k/uC5282/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [6d27f69]5 by Joel Sherrill <joel@…>
m68k/mvme167/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [2816b1af]5 by Joel Sherrill <joel@…>
m68k/mvme162/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [1d1b6f7a]5 by Joel Sherrill <joel@…>
m68k/mvme147s/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [68a5bfcc]5 by Joel Sherrill <joel@…>
m68k/mvme147/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [ce019f3d]5 by Joel Sherrill <joel@…>
m68k/mvme147/console/console.c: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [228942f5]5 by Joel Sherrill <joel@…>
m68k/mrm332/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [8400f688]5 by Joel Sherrill <joel@…>
m68k/mcf5329/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [6515040]5 by Joel Sherrill <joel@…>
m68k/mcf5235/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [c3db9091]5 by Joel Sherrill <joel@…>
m68k/mcf5225x/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [3cf6de58]5 by Joel Sherrill <joel@…>
m68k/mcf52235/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [9bbf6cd3]5 by Joel Sherrill <joel@…>
m68k/mcf5206elite/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [d931d28f]5 by Joel Sherrill <joel@…>
m68k/genmcf548x/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [f68a6ec2]5 by Joel Sherrill <joel@…>
m68k/gen68360/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [5e96a582]5 by Joel Sherrill <joel@…>
m68k/gen68340/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [cbc20686]5 by Joel Sherrill <joel@…>
m68k/csb360/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [aeefcc7]5 by Joel Sherrill <joel@…>
m68k/av5282/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [3f39a77]5 by Joel Sherrill <joel@…>
m32c/m32cbsp/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [96a7d06]5 by Joel Sherrill <joel@…>
i386/pc386/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [02f4c11]5 by Joel Sherrill <joel@…>
arm/smdk2410/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [85fe6d04]5 by Joel Sherrill <joel@…>
arm/rtl22xx/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [734d62e5]5 by Joel Sherrill <joel@…>
arm/gdbarmsim/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [93acba9]5 by Joel Sherrill <joel@…>
arm/edb7312/include/bsp.h: Do not include <rtems/iosupp.h>
19:04 Changeset in rtems [cf99f21]5 by Joel Sherrill <joel@…>
arm/csb336/include/bsp.h: Do not include <rtems/iosupp.h>
14:10 Changeset in rtems [c30d6686]5 by Joel Sherrill <joel@…>
powerpc/gen5200/include/bsp.h: Remove unnecessary include of <rtems/rtc.h>
14:10 Changeset in rtems [07d8f048]5 by Joel Sherrill <joel@…>
m68k/mcf5206elite/include/bsp.h: Remove unnecessary include of <rtems/rtc.h>
13:14 Changeset in rtems [92b6f6e9]5 by Joel Sherrill <joel@…>
Move various driver interface definition headers file libcsupport/ to include/ These were in libcsupport for historical reasons and the placement no longer made sense. As part of this move, some of the files were placed under subdirectories which reflect their installed location. Thank you git for allowing us to move files. Years of CVS resulted in files being somewhere they no longer belonged.
13:00 Changeset in rtems [e581ea9]5 by Sebastian Huber <sebastian.huber@…>
score: Fix _Thread_queue_Extract_locked() We must update the wait flags under protection of the current thread lock, otherwise a _Thread_Timeout() running on another processor may interfere.
12:29 Changeset in rtems [77856f6]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: allow user controlled DMA intr The user has already the power to control which DMA buffer will generate interrupt, but no clean way to enable RX/TX interrupts on DMA channel. Without this patch the user had to init DMA config rx/tx_irq_en_cnt to a very large value.
11:45 Changeset in rtems [818ad5eb]5 by Sebastian Huber <sebastian.huber@…>
score: Simplify _Thread_queue_Do_flush() Also set the thread wait return code for thread proxies since this causes no harm.
09:39 Changeset in rtems [9809d6e0]5 by Sebastian Huber <sebastian.huber@…>
score: _Thread_queue_Flush() parameter changes Change _Thread_queue_Flush() into a macro that invokes _Thread_queue_Do_flush() with the parameter set defined by RTEMS_MULTIPROCESSING. For multiprocessing configurations add the object identifier to avoid direct use of the thread wait information. Use mp_ prefix for multiprocessing related parameters. Rename Thread_queue_Flush_callout to Thread_queue_MP_callout since this type will be re-used later for other operations as well.
06:36 Changeset in rtems [9d9b6b56]5 by Sebastian Huber <sebastian.huber@…>
score: Objects_Thread_queue_Extract_callout Change parameters of the objects thread queue extract callout to avoid a cast and explicit use of the thread wait information.
06:34 Changeset in rtems [06f68a96]5 by Sebastian Huber <sebastian.huber@…>
score: Fix set but not used warning
06:33 Changeset in rtems [863c074]5 by Sebastian Huber <sebastian.huber@…>
score: Fix statement with no effect warning No need to add an assert due to the fatal error parameter passed to _Objects_MP_Allocate_and_open().
06:32 Changeset in rtems [97b7244]5 by Sebastian Huber <sebastian.huber@…>
score: Fix statement with no effect warning No need to add an assert due to the fatal error parameter passed to _Objects_MP_Allocate_and_open().
06:31 Changeset in rtems [9f71433]5 by Sebastian Huber <sebastian.huber@…>
score: Fix statement with no effect warning No need to add an assert due to the fatal error parameter passed to _Objects_MP_Allocate_and_open().
06:29 Changeset in rtems [8afeb993]5 by Sebastian Huber <sebastian.huber@…>
score: Fix statement with no effect warning No need to add an assert due to the fatal error parameter passed to _Objects_MP_Allocate_and_open().
06:08 Changeset in rtems [081d03d]5 by Sebastian Huber <sebastian.huber@…>
score: Fix set but not used warning No need to add an assert due to the fatal error parameter passed to _Objects_MP_Allocate_and_open().
06:05 Changeset in rtems [75c19d25]5 by Sebastian Huber <sebastian.huber@…>
score: Fix set but not used warning
04:56 Changeset in rtems [c01401c4]5 by Sebastian Huber <sebastian.huber@…>
score: _User_extensions_Remove_set() Use unprotected chain operation in _User_extensions_Remove_set() since the caller must own the object allocator lock. Update #2555.
04:51 Changeset in rtems [0a2f5bdd]5 by Chris Johns <chrisj@…>
bsp/pc386: Fix --console=/--printk= argument parsing.

03/29/16:

21:14 Ticket #2680 (Add pthread_setconcurrency() and pthread_getconcurrency()) created by Joel Sherrill
* Code merged. Ticket changed to documentation to remind us to add …
20:42 Ticket #2679 (Update Scheduler Simulator To Master) created by Joel Sherrill
The scheduler simulator is primarily useful for developing, …
19:05 Changeset in rtems [859fc2ba]5 by Joel Sherrill <joel@…>
m68k/uC5282/console/console.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [6dde5d68]5 by Joel Sherrill <joel@…>
m68k/mcf5329/console/console.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [aea1fc5]5 by Joel Sherrill <joel@…>
m68k/mcf5235/console/console.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [4565fc6]5 by Joel Sherrill <joel@…>
m68k/mcf5225x/console/debugio.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [66093623]5 by Joel Sherrill <joel@…>
m68k/mcf5225x/console/console.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [a6e7c575]5 by Joel Sherrill <joel@…>
m68k/mcf52235/console/debugio.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [098a819e]5 by Joel Sherrill <joel@…>
m68k/mcf52235/console/console.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [c08799e]5 by Joel Sherrill <joel@…>
m68k/genmcf548x/console/console.c: Remove unneeded include of <rtems/mw_uid.h>
19:05 Changeset in rtems [00e8c344]5 by Joel Sherrill <joel@…>
m68k/av5282/console/console.c: Remove unneeded include of <rtems/mw_uid.h>
18:10 Changeset in rtems [6ac64302]5 by Joel Sherrill <joel@…>
v850/gdbv850sim: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [adb4fa4e]5 by Joel Sherrill <joel@…>
sparc/leon3: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ba19d589]5 by Joel Sherrill <joel@…>
sparc/leon2: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [7410546]5 by Joel Sherrill <joel@…>
sparc/erc32: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [c531f6d]5 by Joel Sherrill <joel@…>
sparc64/usiii: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [3e767ac]5 by Joel Sherrill <joel@…>
sparc64/niagara: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [92902cf]5 by Joel Sherrill <joel@…>
sh/shsim: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [2895f1ea]5 by Joel Sherrill <joel@…>
sh/gensh4: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [6a0cdbe]5 by Joel Sherrill <joel@…>
sh/gensh2: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [47fc739]5 by Joel Sherrill <joel@…>
sh/gensh1: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [c228bd93]5 by Joel Sherrill <joel@…>
powerpc/virtex5: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [0b2ea32]5 by Joel Sherrill <joel@…>
powerpc/virtex4: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ac0ecf27]5 by Joel Sherrill <joel@…>
powerpc/virtex: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [2a8afe1]5 by Joel Sherrill <joel@…>
powerpc/tqm8xx: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [8d1a5a3]5 by Joel Sherrill <joel@…>
powerpc/t32mppc: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ed29ced]5 by Joel Sherrill <joel@…>
powerpc/ss555: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [97ea73fe]5 by Joel Sherrill <joel@…>
powerpc/qemuppc: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [f37e259a]5 by Joel Sherrill <joel@…>
powerpc/psim: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [78816f4]5 by Joel Sherrill <joel@…>
powerpc/mvme5500: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [899f6357]5 by Joel Sherrill <joel@…>
powerpc/mvme3100: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [629555cf]5 by Joel Sherrill <joel@…>
powerpc/mpc8260ads: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [a2abd26]5 by Joel Sherrill <joel@…>
powerpc/mpc55xxevb: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [c093f37]5 by Joel Sherrill <joel@…>
powerpc/motorola_powerpc: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [3f9ce5b9]5 by Joel Sherrill <joel@…>
powerpc/haleakala: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [6c5d7181]5 by Joel Sherrill <joel@…>
powerpc/gen83xx: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [93ba1d55]5 by Joel Sherrill <joel@…>
powerpc/gen5200: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [13279f5e]5 by Joel Sherrill <joel@…>
powerpc/beatnik: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ba2d56a1]5 by Joel Sherrill <joel@…>
or1k/generic_or1k: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [a7716e9d]5 by Joel Sherrill <joel@…>
no_cpu/no_bsp: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [10bf1b81]5 by Joel Sherrill <joel@…>
nios2/nios2_iss: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [6fe04e5a]5 by Joel Sherrill <joel@…>
moxie/moxiesim: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [16db6ad1]5 by Joel Sherrill <joel@…>
mips/rbtx4938: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [75cd8399]5 by Joel Sherrill <joel@…>
mips/rbtx4925: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [c98d4086]5 by Joel Sherrill <joel@…>
mips/malta: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [c89f4096]5 by Joel Sherrill <joel@…>
mips/jmr3904: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [687d268]5 by Joel Sherrill <joel@…>
mips/hurricane: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [0220f93]5 by Joel Sherrill <joel@…>
mips/csb350: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [8ad6f8d5]5 by Joel Sherrill <joel@…>
m68k/uC5282: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [00bec714]5 by Joel Sherrill <joel@…>
m68k/mvme167: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [9c18598d]5 by Joel Sherrill <joel@…>
m68k/mvme162: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ac86393]5 by Joel Sherrill <joel@…>
m68k/mvme147s: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [6e053d05]5 by Joel Sherrill <joel@…>
m68k/mvme147: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [33e2e04d]5 by Joel Sherrill <joel@…>
m68k/mrm332: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [121971d]5 by Joel Sherrill <joel@…>
m68k/mcf5329: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [fb31ec0b]5 by Joel Sherrill <joel@…>
m68k/mcf5235: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [cdf41c1a]5 by Joel Sherrill <joel@…>
m68k/mcf5225x: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [878d634]5 by Joel Sherrill <joel@…>
m68k/mcf52235: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [30ef900]5 by Joel Sherrill <joel@…>
m68k/mcf5206elite: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [21bab83]5 by Joel Sherrill <joel@…>
m68k/genmcf548x: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [9e79b3f]5 by Joel Sherrill <joel@…>
m68k/gen68360: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [eefad309]5 by Joel Sherrill <joel@…>
m68k/gen68340: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [0a05c6a]5 by Joel Sherrill <joel@…>
m68k/csb360: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [8307bebe]5 by Joel Sherrill <joel@…>
m68k/av5282: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [681d4a58]5 by Joel Sherrill <joel@…>
m32c/m32cbsp: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [b5ebdc6]5 by Joel Sherrill <joel@…>
lm32/milkymist: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [4e885b3]5 by Joel Sherrill <joel@…>
lm32/lm32_evr: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [578d839]5 by Joel Sherrill <joel@…>
i386/pc386: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [aa4fd5e]5 by Joel Sherrill <joel@…>
epiphany/epiphany_sim: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [0a47233]5 by Joel Sherrill <joel@…>
bfin/TLL6527M: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ddf6fbe]5 by Joel Sherrill <joel@…>
bfin/eZKit533: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [50ea7252]5 by Joel Sherrill <joel@…>
bfin/bf537Stamp: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [de4d32d]5 by Joel Sherrill <joel@…>
arm/xilinx-zynq: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [e56090ef]5 by Joel Sherrill <joel@…>
arm/tms570: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [272d421]5 by Joel Sherrill <joel@…>
arm/stm32f4: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [59400251]5 by Joel Sherrill <joel@…>
arm/smdk2410: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [da572a7]5 by Joel Sherrill <joel@…>
arm/rtl22xx: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [a5fffb0]5 by Joel Sherrill <joel@…>
arm/realview-pbx-a9: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [aa78a0f]5 by Joel Sherrill <joel@…>
arm/raspberrypi: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [c2b91e6]5 by Joel Sherrill <joel@…>
arm/lpc32xx: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ac933f9c]5 by Joel Sherrill <joel@…>
arm/lpc24xx: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [8b52b1a]5 by Joel Sherrill <joel@…>
arm/lpc176x: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [9420bf0]5 by Joel Sherrill <joel@…>
arm/lm3s69xx: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [66fed3d7]5 by Joel Sherrill <joel@…>
arm/gumstix: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [2b22e73d]5 by Joel Sherrill <joel@…>
arm/gdbarmsim: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [3d035d8]5 by Joel Sherrill <joel@…>
arm/edb7312: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [748efe9]5 by Joel Sherrill <joel@…>
arm/csb337: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [2fb6d161]5 by Joel Sherrill <joel@…>
arm/csb336: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [ad76eb32]5 by Joel Sherrill <joel@…>
arm/atsam: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
18:10 Changeset in rtems [64eedac]5 by Joel Sherrill <joel@…>
arm/altera-cyclone-v: Remove include of <rtems/console.h> from <bsp.h> and fix warnings
17:54 Changeset in rtems [8a0c06c]5 by Joel Sherrill <joel@…>
sh/shared/console.c: Add include of <rtems/console.h> to fix warning
17:54 Changeset in rtems [b02c77c6]5 by Joel Sherrill <joel@…>
powerpc/shared/console/console.c: Add include of <rtems/console.h> to fix warning
17:53 Changeset in rtems [8dc3522]5 by Joel Sherrill <joel@…>
lm32/shared/console/console.c: Add include of <rtems/console.h> to fix warning
17:53 Changeset in rtems [5940f35e]5 by Joel Sherrill <joel@…>
shared/console-polled.c: Add include of <rtems/console.h> to fix warning
13:14 Ticket #2678 (possible unnecessary includes in console drivers) created by Joel Sherrill
I am making a sweep to eliminate the include of <rtems/console.h> from …
12:59 Changeset in rtems [1ef9caa2]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: support for reading tx/rx DMA queue * Add support for reading the GRSPW TX/RX descriptor counters directly. * Add semaphore lock to counters to avoid couters being out of sync * This makes it possible for the user in polling mode to check the amount of work before entering RX/TX descriptor table processing.
11:20 Changeset in rtems [d4771e6]5 by Sebastian Huber <sebastian.huber@…>
mptests: Fix message queue configuration
10:07 Changeset in rtems [9a972889]5 by Sebastian Huber <sebastian.huber@…>
score: Fix MPCI receive server workspace size
10:06 Changeset in rtems [16832b0]5 by Sebastian Huber <sebastian.huber@…>
score: Fix multiprocessing thread proxies We must provide thread queue heads for the thread wait information for each thread proxy (thread queue heads were introduced by d7665823b208daefb6855591d808e1f3075cedcb). The thread proxy must be allocated before the enqueue operation.
09:57 Changeset in rtems [349dd6b]5 by Sebastian Huber <sebastian.huber@…>
score: Fix MPCI workspace size estimate Account for the global objects table.
09:55 Changeset in rtems [4182b6f]5 by Sebastian Huber <sebastian.huber@…>
score: Fix MPCI workspace size estimate Global objects are no real objects with an objects information structure.
09:53 Changeset in rtems [520938b0]5 by Sebastian Huber <sebastian.huber@…>
score: The API mutexes are not global
06:11 Changeset in rtems [ffa9cbf]5 by Sebastian Huber <sebastian.huber@…>
bsps/powerpc: Avoid recursion in exception handler
03:41 waf-project/GSoC/2016 edited by Arpit Srivastava
(diff)

03/28/16:

02:22 Ticket #2677 (PowerPC BSP score603e PCI.c is broken on case insensitive file system) created by Chris Johns
Any host, such as OX S, with a case insensitive file system does not …

03/27/16:

23:37 Changeset in rtems [7fc05b36]5 by Joel Sherrill <joel@…>
libbsp/sparc64/shared/clock/ckinit.c: Add include of <rtems/clockdrv.h>
23:37 Changeset in rtems [9c7de43]5 by Joel Sherrill <joel@…>
libcpu/m68k/mcf5272/clock/ckinit.c: Fix warning by including <rtems/clockdrv.h>
23:37 Changeset in rtems [d0cffc73]5 by Joel Sherrill <joel@…>
libcpu/m68k/mcf5206/clock/ckinit.c: Fix warning by including <rtems/clockdrv.h>
23:37 Changeset in rtems [6b597c39]5 by Joel Sherrill <joel@…>
libcpu/bfin/clock/clock.c: Fix warning by including <rtems/clockdrv.h>

03/26/16:

12:27 GSoC/2016 edited by Pavel Pisa
List RTEMS file descriptors and LwIP integration project on the page (diff)
01:57 GSoC/2016 edited by Arpit Srivastava
(diff)
01:56 GSoC/2016 edited by Arpit Srivastava
(diff)

03/25/16:

20:31 GSoC/2016 edited by Habeeb Dipo Olufowobi
(diff)
20:28 GSoC/2016 edited by Habeeb Dipo Olufowobi
(diff)
15:47 Changeset in rtems [23d7cba2]5 by Joel Sherrill <joel@…>
sparc64/usiii/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [585f85f]5 by Joel Sherrill <joel@…>
v850/gdbv850sim/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [8da3ebb]5 by Joel Sherrill <joel@…>
sparc64/niagara/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [159df320]5 by Joel Sherrill <joel@…>
sparc/leon3/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [6ee23a2]5 by Joel Sherrill <joel@…>
sparc/leon2/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [138f0ba]5 by Joel Sherrill <joel@…>
sparc/erc32/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [55c8ca0d]5 by Joel Sherrill <joel@…>
sh/shsim/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [f5fab4d]5 by Joel Sherrill <joel@…>
sh/gensh4/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [bd1a793]5 by Joel Sherrill <joel@…>
sh/gensh2/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [de03dac]5 by Joel Sherrill <joel@…>
sh/gensh1/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [01096ad]5 by Joel Sherrill <joel@…>
powerpc/virtex5/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [7b107c24]5 by Joel Sherrill <joel@…>
powerpc/virtex4/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [667b0c15]5 by Joel Sherrill <joel@…>
powerpc/virtex/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [022432d]5 by Joel Sherrill <joel@…>
powerpc/tqm8xx/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [17de5f0]5 by Joel Sherrill <joel@…>
powerpc/t32mppc/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [83b1c4c2]5 by Joel Sherrill <joel@…>
powerpc/ss555/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [37770be1]5 by Joel Sherrill <joel@…>
powerpc/qemuppc/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [a3ce764]5 by Joel Sherrill <joel@…>
powerpc/psim/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [5f72835]5 by Joel Sherrill <joel@…>
powerpc/mvme5500/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [b951a2b]5 by Joel Sherrill <joel@…>
powerpc/mvme3100/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [d04bf84d]5 by Joel Sherrill <joel@…>
powerpc/mpc8260ads/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [a853c061]5 by Joel Sherrill <joel@…>
powerpc/mpc55xxevb/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [227399d]5 by Joel Sherrill <joel@…>
powerpc/motorola_powerpc/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [b63f12a]5 by Joel Sherrill <joel@…>
powerpc/haleakala/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [0ee0eae]5 by Joel Sherrill <joel@…>
powerpc/gen83xx/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [ec5b3f0]5 by Joel Sherrill <joel@…>
powerpc/gen5200/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [a632950]5 by Joel Sherrill <joel@…>
powerpc/beatnik/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [d12fc7f]5 by Joel Sherrill <joel@…>
or1k/generic_or1k/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [36b6ba0d]5 by Joel Sherrill <joel@…>
no_cpu/no_bsp/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [ff3ae79a]5 by Joel Sherrill <joel@…>
nios2/nios2_iss/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [17dc9f7]5 by Joel Sherrill <joel@…>
moxie/moxiesim/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [bb4175f5]5 by Joel Sherrill <joel@…>
mips/rbtx4938/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [279509c]5 by Joel Sherrill <joel@…>
mips/rbtx4925/include/bsp.h: Do not include <rtems/clockdrv.h>
15:47 Changeset in rtems [729048d]5 by Joel Sherrill <joel@…>
mips/malta/include/bsp.h: Do not include <rtems/clockdrv.h>
15:46 Changeset in rtems [3d6160b3]5 by Joel Sherrill <joel@…>
mips/jmr3904/include/bsp.h: Do not include <rtems/clockdrv.h>
15:46 Changeset in rtems [52366987]5 by Joel Sherrill <joel@…>
mips/hurricane/include/bsp.h: Do not include <rtems/clockdrv.h>
15:46 Changeset in rtems [d38ea78]5 by Joel Sherrill <joel@…>
mips/csb350/include/bsp.h: Do not include <rtems/clockdrv.h>
15:46 Changeset in rtems [d4df6ea3]5 by Joel Sherrill <joel@…>
m68k/uC5282/include/bsp.h: Do not include <rtems/clockdrv.h>
15:46 Changeset in rtems [19ec226]5 by Joel Sherrill <joel@…>
m68k/mvme167/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [f6c92120]5 by Joel Sherrill <joel@…>
m68k/mvme162/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [1d57e5a2]5 by Joel Sherrill <joel@…>
m68k/mvme147s/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [4252b5d]5 by Joel Sherrill <joel@…>
m68k/mvme147/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [337475b2]5 by Joel Sherrill <joel@…>
m68k/mrm332/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [426cbc8]5 by Joel Sherrill <joel@…>
m68k/mcf5329/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [ac938b3f]5 by Joel Sherrill <joel@…>
m68k/mcf5235/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [4218ee6]5 by Joel Sherrill <joel@…>
m68k/mcf5225x/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [ea241d6]5 by Joel Sherrill <joel@…>
m68k/mcf52235/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [9710790]5 by Joel Sherrill <joel@…>
m68k/mcf5206elite/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [967f9a2d]5 by Joel Sherrill <joel@…>
m68k/genmcf548x/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [047aa95]5 by Joel Sherrill <joel@…>
m68k/gen68360/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [009b737]5 by Joel Sherrill <joel@…>
m68k/gen68340/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [03faf21]5 by Joel Sherrill <joel@…>
m68k/csb360/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [2ffc23c5]5 by Joel Sherrill <joel@…>
m68k/av5282/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [e778231]5 by Joel Sherrill <joel@…>
m32c/m32cbsp/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [1dee8c84]5 by Joel Sherrill <joel@…>
lm32/milkymist/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [366c42ef]5 by Joel Sherrill <joel@…>
lm32/lm32_evr/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [3abf685f]5 by Joel Sherrill <joel@…>
i386/pc386/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [7aa8c18]5 by Joel Sherrill <joel@…>
epiphany/epiphany_sim/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [514f2d5]5 by Joel Sherrill <joel@…>
bfin/eZKit533/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [64cd0a5]5 by Joel Sherrill <joel@…>
bfin/bf537Stamp/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [864fae6]5 by Joel Sherrill <joel@…>
bfin/TLL6527M/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [9899c91b]5 by Joel Sherrill <joel@…>
arm/xilinx-zynq/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [7dde6b48]5 by Joel Sherrill <joel@…>
arm/tms570/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [c40f81d4]5 by Joel Sherrill <joel@…>
arm/stm32f4/include/bsp.h: Do not include <rtems/clockdrv.h>
15:45 Changeset in rtems [7f21dac]5 by Joel Sherrill <joel@…>
arm/smdk2410/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [947985aa]5 by Joel Sherrill <joel@…>
arm/rtl22xx/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [dbf08e3]5 by Joel Sherrill <joel@…>
arm/realview-pbx-a9/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [ebc8a11]5 by Joel Sherrill <joel@…>
arm/raspberrypi/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [4b9db426]5 by Joel Sherrill <joel@…>
arm/lpc32xx/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [32971366]5 by Joel Sherrill <joel@…>
arm/lpc24xx/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [98e910b4]5 by Joel Sherrill <joel@…>
arm/lpc176x/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [d41577c]5 by Joel Sherrill <joel@…>
arm/lm3s69xx/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [30617a1]5 by Joel Sherrill <joel@…>
arm/gumstix/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [846219a1]5 by Joel Sherrill <joel@…>
arm/gdbarmsim/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [9604d7ed]5 by Joel Sherrill <joel@…>
arm/edb7312/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [c14ece5c]5 by Joel Sherrill <joel@…>
arm/csb337/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [85f20112]5 by Joel Sherrill <joel@…>
arm/csb336/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [413e6e1]5 by Joel Sherrill <joel@…>
arm/atsam/include/bsp.h: Do not include <rtems/clockdrv.h>
15:44 Changeset in rtems [77c0135]5 by Joel Sherrill <joel@…>
arm/altera-cyclone-v/include/bsp.h: Do not include <rtems/clockdrv.h>
13:16 GSoC/2016 edited by sai charan sane
(diff)
12:27 Ticket #2669 (Update OpenRISC toolchain in 4.12) closed by Gedare Bloom
fixed
12:27 Ticket #2668 (Update OpenRISC toolchain in 4.11) closed by Gedare Bloom
fixed
08:02 GSoC/2016 edited by Pavel Pisa
Sane Sai Charan proposal (diff)

03/24/16:

15:10 GSoC/2016 edited by Habeeb Dipo Olufowobi
(diff)
14:40 Changeset in rtems [3feca90]5 by Sebastian Huber <sebastian.huber@…>
score: Fix _Objects_MP_Is_remote() Bug introduced by be8897644043e4378db7add02c3c9e1ac7fde563. Update #2555.
14:39 Changeset in rtems [a62c3aa3]5 by Sebastian Huber <sebastian.huber@…>
score: Allow MPCI packet receive function to block
14:35 Changeset in rtems [3bbf4055]5 by Sebastian Huber <sebastian.huber@…>
network: Special case for RTEMS_MULTIPROCESSING Allow network tasks to run with priority 0 (PRIORITY_PSEUDO_ISR).
14:33 Changeset in rtems [7a904cbe]5 by Sebastian Huber <sebastian.huber@…>
score: Fix CORE mutex RTEMS_MULTIPROCESSING Make sure that the thread proxy is registered as the mutex owner.
07:40 Changeset in rtems [a8ac273c]5 by Sebastian Huber <sebastian.huber@…>
samples/base_mp: Check directive status
06:41 Ticket #2651 (Corruption of register %o5 in window underflow trap handler) closed by Daniel Hellstrom <daniel@…>
fixed: In 33de2037f6007f6adf90514dbc98158a473476fc/rtems: […]
02:28 Changeset in rtems-docs [aae09e2]4.115 by Chris Johns <chrisj@…>
Corrections from Worth Burruss. Many thanks.

03/23/16:

22:33 Changeset in rtems-docs [a34c157]4.115 by Chris Johns <chrisj@…>
Corrections from Worth Burruss. Many thanks.
20:35 Changeset in rtems-docs [6958370]4.115 by Chris Johns <chrisj@…>
Fix bad formatting that somehow went into the doco.
15:37 Changeset in rtems [2803314e]5 by Sebastian Huber <sebastian.huber@…>
bsp/leon3: Remove dead code
10:24 Changeset in rtems [6f9c3e55]5 by Sebastian Huber <sebastian.huber@…>
bsp/motorola_powerpc: README.qemu
09:45 Changeset in rtems [eb5a42f6]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: fixed device/dma closing The user is now responsible to stop and close the DMA channels before closing the device. To prevent complicated situations and blocking the caller of grspw_close and grspw_dma_close a return code was added to indicate to the user that the DMA may not have been stopped or that blocked tasks are still active within the driver for the specified device.
09:01 Changeset in rtems [1e1a91ed]5 by Sebastian Huber <sebastian.huber@…>
score: Remove Thread_queue_Queue::operations field Remove the Thread_queue_Queue::operations field to reduce the size of this structure. Add a thread queue operations parameter to the _Thread_queue_First(), _Thread_queue_First_locked(), _Thread_queue_Enqueue(), _Thread_queue_Dequeue() and _Thread_queue_Flush() functions. This is a preparation patch to reduce the size of several synchronization objects.
08:57 Changeset in rtems [36c3fbbd]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: coding style fixups
06:43 Changeset in rtems [d67c869]5 by Sebastian Huber <sebastian.huber@…>
score: Use RTEMS_UNREACHABLE() The _CPU_Context_switch() in _Thread_Start_multitasking() does in fact not return.
02:57 Changeset in rtems-docs [dc234b5]4.115 by Chris Johns <chrisj@…>
Corrections from a review.
02:18 Changeset in rtems-docs [c075916]4.115 by Chris Johns <chrisj@…>
Corrections and improvements from Worth Burruss (thanks so much).

03/22/16:

22:58 Changeset in rtems [eaf03e9f]5 by Joel Sherrill <joel@…>
pc386/README: Replace contents with discussion of console/printk device selection
22:13 Changeset in rtems [e65c45c]5 by Joel Sherrill <joel@…>
Obsolete rtems_clock_get() directive. This service was marked as deprecated long prior to the 4.11 release series and is now being removed. closes #2676.
18:32 Ticket #2676 (Obsolete clock_get() directive) created by Joel Sherrill
This is deprecated on the 4.11 branch and its use has been isolated in …
18:27 Ticket #2675 (Remove unused libchip configuration parameters) created by Joel Sherrill
The ulMargin and ulHysteresis parameters in the libchip serial …
18:15 Changeset in rtems [426f35f]5 by Joel Sherrill <joel@…>
cpukit/rtems/include/rtems/rtems/sem.h: Remove junk in comment
15:41 Changeset in rtems [9cb7e5d]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: fixed and improved RX/TX wait
15:17 Changeset in rtems [b66394d]5 by Joel Sherrill <joel@…>
sp13/task1.c: Remove warning for misleading indentation Fix a block of off-by-one indentation and add braces to clarify intention.
15:13 Changeset in rtems [7f9e067f]5 by Joel Sherrill <joel@…>
cpuuse/cpuusagetop.c: Fix unused variable warning
15:10 Ticket #2576 (arm/lpc176x: linker script update (add KEEP() sections)) closed by Joel Sherrill <joel@…>
fixed: In 1a738edb39d462b9d99be4537782934f5ec56ca5/rtems: […]
15:07 Changeset in rtems [57e1f4c3]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: fixed error return path in dma_open
14:58 Changeset in rtems [1a738ed]5 by Joel Sherrill <joel@…>
lpc1768_mbed.cfg: Turn on per function sections Closes #2576.
14:51 Changeset in rtems [ac7da5bc]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: Manual handling of link status events Added functionality for manual handling of link status events, configurable via grspw_link_ctrl. Added statistics counter for disconnect error.
14:37 Changeset in rtems [49cf776e]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: added link_ctrl options Improved the link error handling options. Its now possible to disable the link on individual link errors/warnings instead of always on all or none. Changed name of LINKOPTS_IRQ to LINKOPTS_EIRQ to match Linux and VxWorks? SpW driver.
14:34 Changeset in rtems [85f6901]5 by Joel Sherrill <joel@…>
shell/hexdump-odsyntax.c: Add define of _GNU_SOURCE to avoid warnings
14:32 Changeset in rtems [037f7a6]5 by Joel Sherrill <joel@…>
shell/hexdump-conv.c: Disable sccsid to avoid unused warning
13:27 Ticket #2674 (CORE spinlock implementation is next to be useless) created by Sebastian Huber
Lets assume we have two tasks A and B. Task A acquires a CORE …
12:59 Changeset in rtems [fad4324d]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: added grspw_link_status_clr() to API
11:47 Ticket #2673 (RTEMS Source Builder Fails under windows when a user name contains a space) created by Worth Burruss
When a user name contains a space, such as: "Dell User", RTEMS Source …
10:42 Changeset in rtems [c442647f]5 by Daniel Hellstrom <daniel@…>
leon, grspw_pkt: code style clean-ups
07:52 Changeset in rtems [97bbf02]5 by Sebastian Huber <sebastian.huber@…>
score: Use constant for maximum count of CORE sema
07:34 Changeset in rtems [0bd49f1]5 by Sebastian Huber <sebastian.huber@…>
bsp/atsam: Add nocache region support
07:29 Changeset in rtems [935e9c7d]5 by Sebastian Huber <sebastian.huber@…>
bsp/atsam: Fix sizes of internal SRAM
07:24 Changeset in rtems [9e2acee]5 by Sebastian Huber <sebastian.huber@…>
psxtests/psxobj01: Fix for RTEMS_DEBUG
06:58 Changeset in rtems [865f110b]5 by Sebastian Huber <sebastian.huber@…>
score: Fix for RTEMS_DEBUG The rtems_extension_create() no longer uses the Giant lock. Ensure that we call _User_extensions_Add_set() only in the right context. Update #2555.
06:44 Ticket #2672 (After latest patches with Objects_Get_by_name rtems-master not ...) closed by Sebastian Huber <sebastian.huber@…>
fixed: In c61431f9349869e94f12787abea796861039054e/rtems: […]
06:42 Changeset in rtems [c61431f9]5 by Sebastian Huber <sebastian.huber@…>
score: Always declare _Objects_Get_by_name() Still define it only if RTEMS_SCORE_OBJECT_ENABLE_STRING_NAMES is defined. Close #2672.
06:40 Changeset in rtems [30cac38f]5 by Sebastian Huber <sebastian.huber@…>
rtems: Use object allocator lock Object creation and destruction is protected by the object allocator lock and not disabled thread dispatching. Update #2555.
06:39 Boards/MinnowMax edited by Chris Johns
Update grub.cfg details. (diff)
06:28 Ticket #2631 (Use an ISR lock to protect the state of Classic Rate Monotonic objects) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 90960bd11a91259d9aace3870692dbe2e227de0f/rtems: […]
06:24 Changeset in rtems [2518516]5 by Sebastian Huber <sebastian.huber@…>
posix: pthread_exit() is a no-return function
06:24 Changeset in rtems [e8d9b26]5 by Sebastian Huber <sebastian.huber@…>
score: Add and use RTEMS_UNREACHABLE
06:22 Changeset in rtems [baa13626]5 by Sebastian Huber <sebastian.huber@…>
score: Fix for RTEMS_DEBUG Update #2627.
05:11 Boards/MinnowMax edited by Chris Johns
Add booting details. (diff)
04:57 Boards/MinnowMax edited by Chris Johns
Update TOC. (diff)
04:57 Boards/MinnowMax created by Chris Johns
Add a Minnow Max page.
04:51 Boards created by Chris Johns
02:42 Changeset in rtems-docs [2151927]4.115 by Chris Johns <chrisj@…>
Corrections.
01:54 Changeset in rtems-docs [27bcdfb]4.115 by Chris Johns <chrisj@…>
Add a basics section to Getting Started. Rearrange the content.

03/21/16:

15:53 Changeset in rtems [561dec5]5 by Joel Sherrill <joel@…>
powerpc/shared/openpic/openpic.c: Ignore warnings for builtin_frame_address() usage
15:02 Ticket #2672 (After latest patches with Objects_Get_by_name rtems-master not ...) created by Serg Kruglov
After latest patches with Objects_Get_by_name rtems-master not …
14:53 Ticket #2671 (moxie tools fail to build on 4.11) created by Joel Sherrill
I recall needing to sync the binutils and gcc. Checking an old install …
14:28 Ticket #2670 (epiphany tools fail to build on 4.11) created by Joel Sherrill
Looks like an incorrect hash but could be something more subtle. …
14:02 Changeset in rtems [61cc024a]5 by Daniel Hellstrom <daniel@…>
leon, gptimer: start/reset must take RS and IP into account
14:01 Changeset in rtems [90960bd]5 by Sebastian Huber <sebastian.huber@…>
rtems: Rework rate-monotonic scheduler Use the default thread lock to protect rate-monotonic state changes. This avoids use of the Giant lock. Split rtems_rate_monotonic_period() body into several static functions. Introduce a new thread wait class THREAD_WAIT_CLASS_PERIOD for period objects to synchronize the blocking operation. Close #2631.
12:50 Changeset in rtems [b109add]5 by Daniel Hellstrom <daniel@…>
leon: Fix ambapp_bus OCCAN device registeration order NOTE that this will change the association of /dev/occanN with OCCAN[N] device to the same order as in hardware. This means that if you have been useing /dev/occan0 before you have to use /dev/occan1 on a dual OCCAN device system (this affects GR712RC).
12:36 Ticket #2663 (pc386 BSP has complex dependencies) closed by Joel Sherrill
wontfix
09:45 Changeset in rtems [875c26d]5 by Sebastian Huber <sebastian.huber@…>
rtems: Avoid RTEMS_USE_TICKS_FOR_STATISTICS Option was removed by e6b31b27fbe3cd76534db2d4fc4ef5dcdf0d33b4.
09:41 Changeset in rtems [300eaad]5 by Sebastian Huber <sebastian.huber@…>
rtems: Delete Rate_monotonic_Period_time_t Variables with this type directly used the _Timestamp_*() functions.
09:36 Changeset in rtems [610e87d]5 by Sebastian Huber <sebastian.huber@…>
rtems: Inline _Rate_monotonic_Reset_statistics() Use inline function instead of macro.
06:37 Ticket #2664 (spclock_err02) closed by Sebastian Huber
duplicate: This is with RTEMS_DEBUG enabled and is a duplicate of #2624. See also comment in _Watchdog_Ticks_from_timespec().
01:19 Changeset in rtems-docs [024e040]4.115 by Chris Johns <chrisj@…>
Start adding Getting Started guide's Released Version.
00:43 Changeset in rtems [596bfe3b]5 by Joel Sherrill <joel@…>
mptests/*/*.c: Fix warnings
00:33 Changeset in rtems [d165fd2]5 by Joel Sherrill <joel@…>
erc32/*/erc32sonic.c: Fix warnings
00:28 Changeset in rtems [50b73d3]5 by Joel Sherrill <joel@…>
cpukit/rtems/src/*mp.c: Fix set but not used warning
Note: See TracTimeline for information about the timeline view.