summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* bsps: Simplify source file path in Makefile.amSebastian Huber2018-04-124-4/+4
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Remove headers from librtemsbsp_a_SOURCESSebastian Huber2018-04-129-9/+0
| | | | | | | | This was used by the not supported "make dist". This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Avoid line continuation in Makefile.amSebastian Huber2018-04-1216-144/+223
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* configure: Add subdir-objects to all automake flags.Chris Johns2018-04-1118-18/+18
| | | | | | | | | | | This option silences warning with automake-1.16.1 allowing us to upgrade to that version. This change has been tested with automake-1.12.6 and automake-1.16.1. It seems version 1.16.1 configures slower than 1.12.6 for the same source and BSP. The newer versions is 6 second slower. Close #3387.
* bsp/genmcf548x: Fix IRQ supportSebastian Huber2018-04-091-4/+1
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* build: Remove DISTCLEANFILESSebastian Huber2018-04-0916-16/+0
| | | | | A "make distclean" is not supported. So, it makes no sense to have pure "make distclean" related stuff in the Makefile.am.
* bsps: Move generic IRQ support to bspsSebastian Huber2018-04-091-1/+1
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Remove librtemsbsp.a wrapupSebastian Huber2018-04-0916-188/+188
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/m68k: Rename fpsp.am to fpsp-sources.amSebastian Huber2018-04-053-3/+3
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move config macros to RTEMS_BSP_CONFIGURESebastian Huber2018-04-0416-68/+0
| | | | | | | | Provide HAS_NETWORKING and HAS_SMP Automake conditionals for all BSPs. This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Add shared-sources.amSebastian Huber2018-04-0416-0/+16
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* build: Remove EXTRA_DISTSebastian Huber2018-04-0417-44/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* bsps/m68k: Remove libcpu/m68kSebastian Huber2018-03-2619-20/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/genmcf548x: Move libcpu content to bspsSebastian Huber2018-03-261-3/+5
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/csb360: Move libcpu content to bspsSebastian Huber2018-03-261-4/+3
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/mcf5206elite: Move libcpu content to bspsSebastian Huber2018-03-261-6/+5
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/m68k: Move fpsp support to bspsSebastian Huber2018-03-263-5/+3
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/m68k: Move libcpu content to bspsSebastian Huber2018-03-2616-43/+35
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/genmcf548x: Fix printk() supportSebastian Huber2018-03-071-4/+15
|
* bsps/m68k: Fix entry point in linkcmds.baseSebastian Huber2018-03-071-1/+1
| | | | Updates #3520.
* bsps: Rework cache manager implementationSebastian Huber2018-01-3117-147/+31
| | | | | | | | | | | | | | | | | | 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.
* bsps: Move network define to source filesSebastian Huber2018-01-3116-69/+25
| | | | | Define __INSIDE_RTEMS_BSD_TCPIP_STACK__ in the network interface driver source files to avoid some build system magic.
* Remove make preinstallChris Johns2018-01-25115-6044/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* bsp/mvme167: Fix warningsSebastian Huber2018-01-151-17/+17
|
* bsps/m68k: Install shared <mvme16x_hw.h>Sebastian Huber2018-01-046-13/+10
| | | | Update #3254.
* bsps: Add AM_CPPFLAGS to special case CPPFLAGSChris Johns2018-01-042-2/+2
| | | | | | | This is necessary to pick up mandatory flags provided by the build system. Update #3254.
* bsps: Use CPPASCOMPILE for startfileSebastian Huber2018-01-0219-67/+81
| | | | Update #3254.
* bsps: Add EXTRA_DIST to all BSP Makefile.amSebastian Huber2018-01-0216-7/+23
| | | | | | | | | | This makes it possible to easily use EXTRA_DIST += foobar in fragments. Update #3254.
* bsps: Include bsp.am in all BSP Makefile.amSebastian Huber2018-01-0216-0/+16
| | | | Update #3254.
* uC5282: Simplify bsp_specsJoel Sherrill2017-12-202-5/+4
| | | | Updates #3520.
* mcf5235: Simplify bsp_specsJoel Sherrill2017-12-204-5/+8
| | | | Updates #3520.
* mcf5225x: Simplify bsp_specsJoel Sherrill2017-12-202-5/+4
| | | | Updates #3520.
* mcf5206elite: Simplify bsp_specsJoel Sherrill2017-12-203-5/+7
| | | | Updates #3520.
* mcf52235: Simplify bsp_specsJoel Sherrill2017-12-202-5/+3
| | | | Updates #3520.
* gen68340: Simplify bsp_specsJoel Sherrill2017-12-202-5/+5
| | | | Updates #3520.
* gen68360: Simplify bsp_specsJoel Sherrill2017-12-202-5/+4
| | | | Updates #3520.
* csb360: Simplify bsp_specsJoel Sherrill2017-12-202-5/+4
| | | | Updates #3520.
* av5282: Simplify bsp_specsJoel Sherrill2017-12-204-5/+7
| | | | Updates #3520.
* genmcf548x, mvme147, mvme147s, mvme162, mvme167: Simplify bsp_specsJoel Sherrill2017-12-206-25/+9
| | | | | | | These BSPs used shared/startup/linkcmds.base and had to be modified as a set. Updates #3520.
* mrm332: Simplify bsp_specsJoel Sherrill2017-12-202-5/+3
| | | | Updates #3520.
* mcf5329: Simplify bsp_specsJoel Sherrill2017-12-203-5/+3
| | | | Updates #3520.
* mvme167: Simplify bsp_specsJoel Sherrill2017-12-191-7/+0
| | | | | | | | | This bsp-specs added many libraries which it should not have. It also added the non-standard -qjava option which if actually used will have to be addressed by adding linker options on the GCC command line. Updates #3520.
* mcf5206elite: Simplify bsp_specsJoel Sherrill2017-12-191-9/+1
| | | | | | | Removes the non-standard -qflash option added by the bsp_specs. If actually used, this will have to be addressed in another way. Updates #3520.
* csb360: Simplify bsp_specsJoel Sherrill2017-12-191-9/+1
| | | | | | | | This patch removes the non-standard -qclock option which defines _SYS_CLOCK_FREQUENCY. If actually used, this can be achieved by providing ld options via the linking invocation of GCC. Updates #3520.
* libbsp/*/*/configure.ac: Remove references to bsp_specs in AC_CONFIG_SRCDIRJoel Sherrill2017-11-2716-16/+16
| | | | Updates #3250.
* bsps: Provide <tm27.h> in each BSPSebastian Huber2017-11-276-4/+6
| | | | | | | | | Since the <tm27.h> is highly BSP-dependent and used only by the tm27 test program we must provide this header file for each BSP. Without the preinstall build target each header file must have a unique source header file. Update #3254.
* Remove coverhd.hSebastian Huber2017-11-2440-839/+0
| | | | | | | This header file contained timing overhead values which are hard to maintain. Update #3254.
* bsps: Simplify RTEMS_BSP_CLEANUP_OPTIONSSebastian Huber2017-11-2225-16/+25
| | | | | | | | | Remove BSP-specific defaults for RTEMS_BSP_CLEANUP_OPTIONS to simplify the BSP configuration and documentation. Change defaults to: BSP_PRESS_KEY_FOR_RESET=0 BSP_RESET_BOARD_AT_EXIT=1 BSP_PRINT_EXCEPTION_CONTEXT=1
* getentropy: Add cpu counter based implementation.Christian Mauderer2017-11-1716-0/+16
| | | | Update #3239.
* mvme162: Fix errors tripped by transition to using polled IO for testsJoel Sherrill2017-11-102-2/+3
|