summaryrefslogtreecommitdiffstats
path: root/cpukit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Xilinx AXI I2C driver IP race condition causes clock glitch.Chris Johns2018-02-011-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
* epiphany: Workaround until next Newlib snapshotSebastian Huber2018-01-312-0/+70
| | | | | | | At least with Binutils 2.30 and GCC 7.3 we need symbol definitions without the leading underscore. Fixed in Newlib 1658a57715de93d50983f34e75216101eb373993.
* epiphany: Fixes for GCC 7.3Sebastian Huber2018-01-312-13/+12
| | | | GCC 7.3 defines __USER_LABEL_PREFIX__ to nothing.
* ada: Introduce RTEMS.Size typeSebastian Huber2018-01-2912-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.
* ada: Fix RTEMS.Time_tSebastian Huber2018-01-291-1/+1
| | | | Update #3111.
* Remove make preinstallChris Johns2018-01-25654-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.
* rfs: Fix format warningSebastian Huber2018-01-231-1/+1
| | | | Update #3082.
* rfs: Fix for 64-bit targetsSebastian Huber2018-01-222-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.
* monitor: Fix thread priority valuesSebastian Huber2018-01-221-1/+4
|
* powerpc: Add FSL_EIS_EPRSebastian Huber2018-01-221-0/+1
| | | | Update #3085.
* tests: Change TEST BUILD to use define namesSebastian Huber2018-01-221-77/+32
|
* rtems: Fix rtems_task_mode()Sebastian Huber2018-01-191-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.
* testsupport/testbeginend.c: Fix redefined warningJoel Sherrill2018-01-161-1/+3
|
* Include rtems/bspIo.h for printk.Chris Johns2018-01-041-0/+2
| | | | Closes @3267.
* sparc: Remove <bsp.h> from PCI shell commandSebastian Huber2018-01-021-1/+0
| | | | | Update #3254. Update #3260.
* sparc: Remove BSP specifics from <pci/irq.h>Sebastian Huber2018-01-021-6/+16
| | | | | | Update #3254. Update #3260. Update #3269.
* sparc: Remove BSP specifics from <pci/access.h>Sebastian Huber2018-01-021-93/+0
| | | | | Update #3254. Update #3260.
* sparc: Move <libcpu/byteorder.h>Sebastian Huber2018-01-023-0/+78
| | | | | Update #3254. Update #3260.
* posix: Remove unused global variableSebastian Huber2017-12-151-2/+0
| | | | | Update #2702. Update #2555.
* epiphany: Remove superfluous includesSebastian Huber2017-12-141-4/+0
| | | | Update #3254.
* untar: ConstifySebastian Huber2017-12-142-2/+2
|
* zlib: Fix buildSebastian Huber2017-12-134-6/+7
| | | | Update #3254.
* zlib: Do not generate zconf.hSebastian Huber2017-12-132-10/+2
| | | | Update #3254.
* telnetd: Include <rtems/passwd.h>Sebastian Huber2017-12-131-1/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* pppd: Include <rtems/rtems*.h>Sebastian Huber2017-12-132-2/+2
| | | | | | Prepare for header file move to common include directory. Update #3254.
* mghttpd: Include <mghttpd/mongoose.h>Sebastian Huber2017-12-131-1/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* uuid: Include <uuid/uuid.h>Sebastian Huber2017-12-131-1/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* utf8proc: Include <utf8proc/utf8proc.h>Sebastian Huber2017-12-131-1/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* redirector: Include <rtems/stdio-redirect.h>Sebastian Huber2017-12-131-2/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* shell: Include <rtems/shell.h>Sebastian Huber2017-12-131-1/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* monitor: Include <rtems/monitor.h>Sebastian Huber2017-12-133-3/+3
| | | | | | Prepare for header file move to common include directory. Update #3254.
* capture: Include <rtems/captureimpl.h>Sebastian Huber2017-12-132-5/+3
| | | | | | Prepare for header file move to common include directory. Update #3254.
* RFS: Include <rtems/rtems-rfs-shell.h>Sebastian Huber2017-12-131-1/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* libdl: Include <rtems/rtl/rtl-*.h>Sebastian Huber2017-12-1328-41/+41
| | | | | | Prepare for header file move to common include directory. Update #3254.
* pipe: Include <rtems/pipe.h>Sebastian Huber2017-12-131-2/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* dosfs: Include <rtems/dosfs.h>Sebastian Huber2017-12-132-2/+2
| | | | | | Prepare for header file move to common include directory. Update #3254.
* ftpd: Include <rtems/ftpd.h>Sebastian Huber2017-12-131-2/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* devfs: Include <rtems/devfs.h>Sebastian Huber2017-12-1310-10/+10
| | | | | | Prepare for header file move to common include directory. Update #3254.
* IMFS: Include <rtems/imfs.h>Sebastian Huber2017-12-1329-29/+29
| | | | | | Prepare for header file move to common include directory. Update #3254.
* libdebugger: Avoid use of <bsp/linker-symbols.h>Sebastian Huber2017-12-131-2/+4
| | | | Update #3254.
* arm: Move <libcpu/arm-cp15.h> to cpukitSebastian Huber2017-12-133-0/+2272
| | | | Update #3254.
* dosfs: Allow creating a file with similar name.Christian Mauderer2017-12-071-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.
* Remove obsolete network header filesSebastian Huber2017-12-0727-4653/+0
| | | | Update #3254.
* libmisc/stackchk/check.c: correct formatting of stack pointers in ↵Andrei Chichak2017-12-071-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
* taskmode.c: Ensure all error checking is done before modifying executingJoel Sherrill2017-12-061-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.
* confdefs: Replace RTEMS 4.12 with 5.1Sebastian Huber2017-12-061-8/+8
| | | | Update #3220.
* libio: Use API mutexSebastian Huber2017-12-064-54/+18
|
* drvmgr: Use API mutexSebastian Huber2017-12-064-37/+7
|
* dosfs: Fix files with same name as volume name.Christian Mauderer2017-12-051-1/+2
| | | | | | | Take care that a file in the root directory with the same name as the volume name can be found. Update #3257.
* score: Use self-contained API mutexSebastian Huber2017-12-0426-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.