summaryrefslogtreecommitdiffstats
path: root/cpukit (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-02-01Xilinx AXI I2C driver IP race condition causes clock glitch.Chris Johns1-1/+5
Setting the PIRQ to 0 before reading the data produces a short clock pulse. Moving the write to after reading the data fixes the issue. Close #3173
2018-01-31epiphany: Workaround until next Newlib snapshotSebastian Huber2-0/+70
At least with Binutils 2.30 and GCC 7.3 we need symbol definitions without the leading underscore. Fixed in Newlib 1658a57715de93d50983f34e75216101eb373993.
2018-01-31epiphany: Fixes for GCC 7.3Sebastian Huber2-13/+12
GCC 7.3 defines __USER_LABEL_PREFIX__ to nothing.
2018-01-29ada: Introduce RTEMS.Size typeSebastian Huber12-53/+60
Some time ago the Classic API object size related parameters were changed to use size_t. Reflect this in the Ada bindings. Update #3082.
2018-01-29ada: Fix RTEMS.Time_tSebastian Huber1-1/+1
Update #3111.
2018-01-25Remove make preinstallChris Johns654-5250/+1089
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2018-01-23rfs: Fix format warningSebastian Huber1-1/+1
Update #3082.
2018-01-22rfs: Fix for 64-bit targetsSebastian Huber2-2/+2
The RTEMS_BLKIO_SETBLKSIZE IO control expects an uint32_t parameter and not a size_t which is 64-bits on 64-bit targets. Update #3082.
2018-01-22monitor: Fix thread priority valuesSebastian Huber1-1/+4
2018-01-22powerpc: Add FSL_EIS_EPRSebastian Huber1-0/+1
Update #3085.
2018-01-22tests: Change TEST BUILD to use define namesSebastian Huber1-77/+32
2018-01-19rtems: Fix rtems_task_mode()Sebastian Huber1-8/+0
A rtems_configuration_is_smp_enabled() inside a !defined( RTEMS_SMP) block makes no sense. Remove !defined( RTEMS_SMP ) conditions. Test tm04 works now again. Update #3000.
2018-01-16testsupport/testbeginend.c: Fix redefined warningJoel Sherrill1-1/+3
2018-01-04Include rtems/bspIo.h for printk.Chris Johns1-0/+2
Closes @3267.
2018-01-02sparc: Remove <bsp.h> from PCI shell commandSebastian Huber1-1/+0
Update #3254. Update #3260.
2018-01-02sparc: Remove BSP specifics from <pci/irq.h>Sebastian Huber1-6/+16
Update #3254. Update #3260. Update #3269.
2018-01-02sparc: Remove BSP specifics from <pci/access.h>Sebastian Huber1-93/+0
Update #3254. Update #3260.
2018-01-02sparc: Move <libcpu/byteorder.h>Sebastian Huber3-0/+78
Update #3254. Update #3260.
2017-12-15posix: Remove unused global variableSebastian Huber1-2/+0
Update #2702. Update #2555.
2017-12-14epiphany: Remove superfluous includesSebastian Huber1-4/+0
Update #3254.
2017-12-14untar: ConstifySebastian Huber2-2/+2
2017-12-13zlib: Fix buildSebastian Huber4-6/+7
Update #3254.
2017-12-13zlib: Do not generate zconf.hSebastian Huber2-10/+2
Update #3254.
2017-12-13telnetd: Include <rtems/passwd.h>Sebastian Huber1-1/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13pppd: Include <rtems/rtems*.h>Sebastian Huber2-2/+2
Prepare for header file move to common include directory. Update #3254.
2017-12-13mghttpd: Include <mghttpd/mongoose.h>Sebastian Huber1-1/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13uuid: Include <uuid/uuid.h>Sebastian Huber1-1/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13utf8proc: Include <utf8proc/utf8proc.h>Sebastian Huber1-1/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13redirector: Include <rtems/stdio-redirect.h>Sebastian Huber1-2/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13shell: Include <rtems/shell.h>Sebastian Huber1-1/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13monitor: Include <rtems/monitor.h>Sebastian Huber3-3/+3
Prepare for header file move to common include directory. Update #3254.
2017-12-13capture: Include <rtems/captureimpl.h>Sebastian Huber2-5/+3
Prepare for header file move to common include directory. Update #3254.
2017-12-13RFS: Include <rtems/rtems-rfs-shell.h>Sebastian Huber1-1/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13libdl: Include <rtems/rtl/rtl-*.h>Sebastian Huber28-41/+41
Prepare for header file move to common include directory. Update #3254.
2017-12-13pipe: Include <rtems/pipe.h>Sebastian Huber1-2/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13dosfs: Include <rtems/dosfs.h>Sebastian Huber2-2/+2
Prepare for header file move to common include directory. Update #3254.
2017-12-13ftpd: Include <rtems/ftpd.h>Sebastian Huber1-2/+1
Prepare for header file move to common include directory. Update #3254.
2017-12-13devfs: Include <rtems/devfs.h>Sebastian Huber10-10/+10
Prepare for header file move to common include directory. Update #3254.
2017-12-13IMFS: Include <rtems/imfs.h>Sebastian Huber29-29/+29
Prepare for header file move to common include directory. Update #3254.
2017-12-13libdebugger: Avoid use of <bsp/linker-symbols.h>Sebastian Huber1-2/+4
Update #3254.
2017-12-13arm: Move <libcpu/arm-cp15.h> to cpukitSebastian Huber3-0/+2272
Update #3254.
2017-12-07dosfs: Allow creating a file with similar name.Christian Mauderer1-3/+7
If there is already a file with a long file name it isn't possible to create a second file which has a name that ends on the first files name (for example ets.beam and sets.beam). This patch fixes that. Update #3258.
2017-12-07Remove obsolete network header filesSebastian Huber27-4653/+0
Update #3254.
2017-12-07libmisc/stackchk/check.c: correct formatting of stack pointers in ↵Andrei Chichak1-2/+2
Stack_check_Dump_threads_usage Pointers were being printed as 0x<decimal> rather than 0x<hex>. I altered the formatting define used to give the correct formatting. Close #3240
2017-12-06taskmode.c: Ensure all error checking is done before modifying executingJoel Sherrill1-3/+31
Also use single conditional expressions to simplify error checking. Combined, this all resulted in a block of SMP enabled error checking. Updates #3000.
2017-12-06confdefs: Replace RTEMS 4.12 with 5.1Sebastian Huber1-8/+8
Update #3220.
2017-12-06libio: Use API mutexSebastian Huber4-54/+18
2017-12-06drvmgr: Use API mutexSebastian Huber4-37/+7
2017-12-05dosfs: Fix files with same name as volume name.Christian Mauderer1-1/+2
Take care that a file in the root directory with the same name as the volume name can be found. Update #3257.
2017-12-04score: Use self-contained API mutexSebastian Huber26-242/+119
Use a self-contained recursive mutex for API_Mutex_Control. The API mutexes are protected against asynchronous thread cancellation. Add dedicated mutexes for libatomic and TOD. Close #2629. Close #2630.