summaryrefslogtreecommitdiffstats
path: root/c (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-31bsps: Rework cache manager implementationSebastian Huber127-5274/+135
The previous cache manager support used a single souce file (cache_manager.c) which included an implementation header (cache_.h). This required the use of specialized include paths to find the right header file. Change this to include a generic implementation header (cacheimpl.h) in specialized source files. Use the following directories and files: * bsps/shared/cache * bsps/@RTEMS_CPU@/shared/cache * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILY/start/cache.c Update #3285.
2018-01-31bsps: Move network define to source filesSebastian Huber83-361/+145
Define __INSIDE_RTEMS_BSD_TCPIP_STACK__ in the network interface driver source files to avoid some build system magic.
2018-01-31epiphany: Fixes for GCC 7.3Sebastian Huber2-24/+24
GCC 7.3 defines __USER_LABEL_PREFIX__ to nothing.
2018-01-29Avoid Newlib-specific _EXFUN()Sebastian Huber1-1/+1
2018-01-25Remove make preinstallChris Johns1552-393632/+802
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-23bsp/qoriq: Fix define for optional intercomSebastian Huber1-2/+2
Update #3085.
2018-01-22bsp/gen5200: Use public include pathSebastian Huber1-1/+1
Update #3254.
2018-01-22bsp/qoriq: Fix hypervisor guest interrupt initSebastian Huber1-1/+19
Update #3085.
2018-01-22bsp/qoriq: Fix hypervisor guest irq vector maxSebastian Huber2-4/+13
Update #3085.
2018-01-22bsp/qoriq: Optional multiprocessing supportSebastian Huber1-0/+4
Update #3085.
2018-01-22bsp/qoriq: Fix hypervisor guest polled consoleSebastian Huber1-1/+1
Update #3085.
2018-01-22bsp/qoriq: Fix hypervisor guest IRQ supportSebastian Huber1-1/+5
Update #3085.
2018-01-22bsp/qoriq: Fix bsp_fdt_map_intr()Sebastian Huber1-0/+4
Update #3085.
2018-01-22bsp/qoriq: Fix hypervisor guest MMU configSebastian Huber2-38/+188
Account for DPAA resources defined in the device tree. Prevent merging of areas with incompatible MAS2. Update #3085.
2018-01-22bsps: Move wd80x3.h to libchip/wd80x3.hSebastian Huber9-19/+7
This header is used also by the motorola_powerpc BSP. Update #3254.
2018-01-19bsp/gen5200: Fix i2c.h and i2cdrv.h installationSebastian Huber8-17/+8
Install these files only as <bsp/i2c.h> and <bsp/i2cdrv.h>. Update #3254.
2018-01-18bsp/leon3: Fix interrupt timestamp timecounterSebastian Huber1-1/+8
2018-01-18leon3: Simplify bsp_specsJoel Sherrill1-4/+0
Updates #3520.
2018-01-18leon2: Simplify bsp_specsJoel Sherrill1-4/+0
Updates #3520.
2018-01-18sparc/erc32: Simplify bsp_specsJoel Sherrill1-4/+0
Updates #3520.
2018-01-18qemuppc: Simplify bsp_specsJoel Sherrill1-4/+0
Updates #3520.
2018-01-16bsps/powerpc: Move BSP specific file to BSPSebastian Huber4-4/+3
Update #3254.
2018-01-15bsps/arm: Add header guard, fix definesChris Johns1-2/+5
2018-01-15bsps/m68k: Fix CACR register definesSebastian Huber1-4/+1
2018-01-15bsps: Fix redefine warningChris Johns1-0/+1
2018-01-15bsp/mvme167: Fix warningsSebastian Huber1-17/+17
2018-01-15bsps: Add AM_CPPFLAGS to special case CPPFLAGSSebastian Huber1-2/+2
This is necessary to pick up mandatory flags provided by the build system. Update #3254.
2018-01-15libchip: Use public include pathSebastian Huber1-1/+1
Update #3254.
2018-01-15bsps/lm32: Do not include network headers in bsp.hSebastian Huber2-5/+2
Update #3254.
2018-01-05bsp/gen5200: Fix linker command fileSebastian Huber1-0/+1
Updates #3520.
2018-01-04bsps/m68k: Install shared <mvme16x_hw.h>Sebastian Huber6-13/+10
Update #3254.
2018-01-04bsps/mips: Fix AC_CONFIG_SRCDIR()Chris Johns1-1/+1
Update #3254.
2018-01-04bsps/i386: Fix AC_CONFIG_SRCDIR()Chris Johns1-1/+1
Update #3254.
2018-01-04bsp/edb7312: Use public include pathChris Johns1-1/+1
Update #3254.
2018-01-04bsps: Use public include pathChris Johns2-4/+4
Update #3254.
2018-01-04bsps/powerpc: Use public include pathChris Johns1-1/+1
Update #3254.
2018-01-04bsp/mvme3100: Use public include pathChris Johns1-1/+1
Update #3254.
2018-01-04bsp/beatnik: Use public include pathChris Johns1-1/+1
Update #3254.
2018-01-04bsps/bfin: Use public include pathChris Johns7-7/+7
Update #3254.
2018-01-04bsps/powerpc: Use public include pathChris Johns22-75/+13
Update #3254.
2018-01-04bsp/mcf548x: Use public include pathChris Johns3-6/+6
Update #3254.
2018-01-04libchip: Use public include pathChris Johns8-11/+10
Update #3254.
2018-01-04bsp/gen5200: Use public include pathChris Johns31-68/+54
Update #3254.
2018-01-04bsps/lm32: Use public include pathChris Johns13-13/+13
Update #3254.
2018-01-04bsp/pc386: Use public include pathChris Johns6-6/+6
Update #3254.
2018-01-04bsp/altera-cyclone-v: Use public include pathChris Johns14-61/+61
Update #3254.
2018-01-04bsps: Add AM_CPPFLAGS to special case CPPFLAGSChris Johns18-18/+18
This is necessary to pick up mandatory flags provided by the build system. Update #3254.
2018-01-04bsp/pc386: Do not install console_private.hSebastian Huber3-6/+1
The name suggests that this is a private implementation header file. Update #3254.
2018-01-03bsps/powerpc: Remove unused RTEMS_CPU_MODELSebastian Huber1-17/+3
2018-01-03bsps/powerpc: Rename BSP specific linkcmds.baseSebastian Huber13-15/+15
Avoid name conflicts with shared linkcmds.base. Update #3254.