summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/genmcf548x/include/bsp.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-25Remove make preinstallChris Johns1-134/+0
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.
2016-03-30m68k/genmcf548x/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill1-2/+0
2016-03-29m68k/genmcf548x: Remove include of <rtems/console.h> from <bsp.h> and fix ↵Joel Sherrill1-1/+0
warnings
2016-03-27m68k/genmcf548x/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill1-1/+0
2015-07-16remaining bsp.h: Fix by hand to LIBBSP_@CPU@_@BSP_FAMILY@_BSP_HJoel Sherrill1-2/+2
These files were left after running the script in the previous patch.
2014-10-23bsps: Move extern "C" to not cover includesSebastian Huber1-3/+4
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-09-23bsp/genmcf548x: Use inline cache implementationSebastian Huber1-0/+7
2014-09-23bsp/genmcf548x: Delete duplicate network configSebastian Huber1-7/+0
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2014-01-08genmcf548x: Improve DoxygenToma Radu1-0/+16
Add doxygen to the header files in the genmcf548x/include directory.
2013-12-16bsp/genmcf548x: Add initial values for INTC_ICRnSebastian Huber1-18/+2
According to the manual the application must use unique and non-overlapping level and priority definitions for enabled interrupts.
2013-12-16bsps/m68k: Add and use linkcmds.baseSebastian Huber1-2/+0
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-0/+1
Include <bsp/default-initial-extension.h> in all BSPs. Call rtems_fatal() with RTEMS_FATAL_SOURCE_EXIT as source and the exit() status code as fatal code in every bsp_cleanup(). Move previous bsp_cleanup() code into bsp_fatal_extension().
2012-04-16m68k: replace m68k_isr with rtems_isrGedare Bloom1-1/+1
2009-12-14get vital data from dBUG monitor for COBRA5475 boardThomas Doerfler1-0/+15
2009-10-15 add network support, various correctionsThomas Doerfler1-4/+13
2008-09-182008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-21/+0
* include/bsp.h: Remove unnecessary boilerplate comments.
2008-09-102008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+0
* include/bsp.h: Review of all bsp_cleanup() implementations. In this phase, all prototypes were removed from bsp.h and empty implementations were removed and made to use the shared stub.
2008-07-11added variant to gen68360 BSPThomas Doerfler1-0/+136
added genmcf548x BSP