summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* bsp/qoriq: Fix L1 cache flushSebastian Huber2017-04-031-6/+13
|
* bsp/qoriq: Adjust MMU config only onceSebastian Huber2017-04-033-5/+10
|
* bsp/qoriq: Add post-link hookSebastian Huber2017-04-031-0/+7
|
* bsps: Fix baud settingsSebastian Huber2017-04-038-12/+10
| | | | Update #2897.
* configure: Remove defunct configure stuffSebastian Huber2017-04-031-2/+0
|
* libdl: Support link ordered loading of ELF sections.Chris Johns2017-03-316-1341/+1523
| | | | | | | | | | | | | The ARM C++ exception ABI uses an address ordered index table to locate the correct frame data and this requires the EXIDX sections are loaded in the order the order the matching text is loaded. The EXIDX sections set the SHF_LINK_ORDER flag and link field. This patch adds support to load those flagged sections in the linked-to section order. Updates #2955. Closes #2959
* benchmarks/whetstone: Port to RTEMSSebastian Huber2017-03-295-15/+39
| | | | Update #2958.
* benchmarks/whetstone: ImportSebastian Huber2017-03-291-0/+433
| | | | | | | | Import whetstone sources from: http://www.netlib.org/benchmark/whetstone.c Update #2958.
* benchmarks/linpack: Port to RTEMSSebastian Huber2017-03-295-180/+109
| | | | Close #2958.
* benchmarks/linpack: ImportSebastian Huber2017-03-291-0/+1333
| | | | | | | | Import linpack sources from: http://www.netlib.org/benchmark/linpack-pc.c Update #2958.
* benchmarks/dhrystone: Port to RTEMSSebastian Huber2017-03-297-33/+128
| | | | Update #2958.
* benchmarks/dhrystone: ImportSebastian Huber2017-03-296-0/+1596
| | | | | | | | Import dhrystone sources from: http://www.netlib.org/benchmark/dhry-c Update #2958.
* benchmarks: Add benchmark templatesSebastian Huber2017-03-2915-1/+273
| | | | Update #2958.
* arm: Optimize context switchSebastian Huber2017-03-284-90/+55
| | | | | | | | | Set CPU_ENABLE_ROBUST_THREAD_DISPATCH to TRUE. In this case the interrupts are always enabled during a context switch even after interrupt processing (see #2751). Remove the CPSR from the context control since it contains only volatile bits. Close #2954.
* posix: Fix pthread_detach() internal lock acquireSebastian Huber2017-03-281-1/+1
|
* rtems: Fix error return pathSebastian Huber2017-03-281-0/+1
|
* cpukit: Fix Makefile.am and update preinstall.amSebastian Huber2017-03-272-18/+20
| | | | Update #2897.
* bsp/qoriq: Regenerate preinstall.amSebastian Huber2017-03-271-4/+0
|
* bsp/tms570: Use shared benchmark timerSebastian Huber2017-03-272-62/+1
|
* bsps: Add simple CPU counter benchmark timerSebastian Huber2017-03-271-0/+35
|
* bsp/tms570: Simplify CPU counter supportSebastian Huber2017-03-271-63/+13
| | | | Only touch the cycle counter settings. Do not enable user mode access.
* bsps/arm: Add Performance Monitors ExtensionSebastian Huber2017-03-271-1/+446
|
* bsp/tms570: Simplify <bsp.h>Sebastian Huber2017-03-271-12/+0
|
* bsp/tms570: Remove OPERATION_COUNT defineSebastian Huber2017-03-271-3/+0
| | | | This is the wrong place to define it.
* termios: Avoid invalid memory accessSebastian Huber2017-03-271-1/+3
| | | | Update #2897.
* termios: Synchronize with latest FreeBSD headersKevin Kirspel2017-03-2277-658/+1393
| | | | | | | | | | | Adding modified FreeBSD headers to synchronize RTEMS termios with FreeBSD. Modify termios to support dedicated input and output baud for termios structure. Updated BSPs to use dedicated input and output baud in termios structure. Updated tools to use dedicated input and output baud in termios structure. Updated termios testsuites to use dedicated input and output baud in termios structure. Close #2897.
* bsp/atsam: Fix DMA support of some driversSebastian Huber2017-03-223-0/+3
|
* dosfs: Fix file name searchSebastian Huber2017-03-162-18/+17
| | | | | | | Do not use our long file name entry count to optimize the file name search. The Unicode comparison must be taken into account. Update #2939.
* dosfs: Fix race condition msdos_dir_read()Sebastian Huber2017-03-161-5/+5
| | | | | | Obtain file system instance lock before member access. Update #2937.
* dosfs: Rename fat_entries to lfn_entriesSebastian Huber2017-03-161-20/+20
| | | | | The name "fat_entries" for long file name directory entries is quite misleading.
* dosfs: Fix long file name paddingSebastian Huber2017-03-161-3/+3
| | | | Update #2934.
* dosfs: msdos_filename_utf8_to_short_name_for_saveSebastian Huber2017-03-161-15/+10
| | | | Simplify.
* dosfs: Fix msdos_add_file()Sebastian Huber2017-03-161-245/+155
| | | | | | Make sure that long file names work accross cluster boundaries. Update #2929.
* dosfs: Simplify msdos_add_file()Sebastian Huber2017-03-161-4/+2
| | | | Update #2929.
* dosfs: Add and use msdos_lfn_checksum()Sebastian Huber2017-03-163-22/+25
| | | | Update #2929.
* dosfs: Simplify fat_file_open()Sebastian Huber2017-03-161-3/+1
| | | | Update #2929.
* dosfs: Simplify msdos_creat_node()Sebastian Huber2017-03-161-21/+14
| | | | Update #2929.
* dosfs: Fix fat_file_write()Sebastian Huber2017-03-1610-36/+183
| | | | | | | | Remove forced overwrite which leads to file data corruption. The logic to determine a forced overwrite was fundamentally broken. For simplity, disable this feature. Update #2622.
* dosfs: Fix msdos_utf8_normalize_and_fold()Sebastian Huber2017-03-162-5/+22
| | | | | | | | It is all right in case the result uses the full destination buffer. Without this fix the handling of a maximum 8.3 short file name is broken. Update #2928.
* libio: Fix deadlock in location managementSebastian Huber2017-03-168-17/+21
| | | | | | | | Perform a context-dependent deferred location release to avoid a deadlock on the file system instance locks, for example during a chdir(). Update #2936.
* psxstrsignal01: New testJoel Sherrill2017-03-156-1/+198
|
* tools/build/eolstrip.c: Use snprintf() to avoid potential buffer overflowJoel Sherrill2017-03-141-1/+3
| | | | This was spotted by Coverity Scan.
* libchip/serial/mc68681.c: Add error checkJoel Sherrill2017-03-141-0/+2
| | | | This was spotted by Coverity Scan.
* Fix rtems-test-check with a BSD sed.Chris Johns2017-03-142-6/+6
| | | | | BSD sed does not support '\t' and treated '[ \t]' as 3 characters. This patch uses a standard method of supporting blank spaces.
* libbsp/mips/shared/irq/i8259.c: Add include of rtems/bspIo.hJoel Sherrill2017-03-091-0/+1
|
* libbsp/shared/clock/clockdrv.c: Remove unneeded printk()Joel Sherrill2017-03-091-1/+0
|
* libbsp/malta/pci/pci.c: Correct printk() formatsJoel Sherrill2017-03-091-6/+6
|
* libbsp/csb350/clock/clockdrv.c: Remove unneeded printk()Joel Sherrill2017-03-091-3/+0
|
* libbsp/mips/shared/irq.c: Fix warningsJoel Sherrill2017-03-092-41/+11
|
* arm: Fix CPU context validation for Cortex-R4Sebastian Huber2017-03-092-7/+3
| | | | Do not touch the FPSCR[QC] bit since this is DNM/RAZ on Cortex-R4.