summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/Makefile.am (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Remove EXTRA_DISTSebastian Huber2018-04-041-30/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* Remove make preinstallChris Johns2018-01-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* bsps/powerpc: Move BSP specific file to BSPSebastian Huber2018-01-161-1/+1
| | | | Update #3254.
* build-system: Parallel build all subdirs.Chris Johns2017-05-241-1/+1
|
* bsps/powerpc: Use default bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+1
| | | | Update #2408.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-4/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* Revert: Remove CVS IdsJoel Sherrill2012-05-071-0/+4
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-4/+0
|
* 2011-06-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-06-191-6/+4
| | | | * Makefile.am: Remove references to non-existing files.
* Whitespace removal.Ralf Corsepius2009-11-281-1/+1
|
* remove depratated powerpc exception APIThomas Doerfler2009-10-301-1/+1
|
* 2007-12-10 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-12-111-1/+2
| | | | | * Makefile.am, start/preload.S: moved preload.S to ../shared/start.
* 2007-12-10 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-12-111-0/+2
| | | | | | * shared/motorola/vpd.c, shared/motorola/vpd.h: added code (originally developed for 'beatnik') to read MotLoad VPD data from i2c eeprom.
* 2007-12-08 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-12-101-1/+1
| | | | | | * Makefile.am: merged shared/vme/vme_universe.c and shared/vme/vme_universe_dma.c into one file. Added support for Tsi148 driver (DMA).
* 2007-11-29 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-11-271-0/+4
| | | | | | | | | | | | | * Makefile.am, shared/flash, shared/flash/flash.c, shared/flash/flashPgm.h, shared/flash/flashPgmPvt.h, shared/flash/intelFlash.c, shared/flash/spansionFlash.c: Added flash programmer API, implementation and chip drivers for some intel + spansion flash chips (as found on mvme5500, mvme6100 and mvme3100 boards). A more appopriate place would probably be libchip but I don't know if the API is acceptable and if the implementation is generic enough (e.g., no CFI support) so I leave it here for now.
* 2007-11-21 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-11-211-1/+2
| | | | | | | | * Makefile.am, motorola_powerpc/Makefile.am, * shared/pci/detect_raven_bridge.c, Makefile.am, * shared/pci/generic_clear_hberrs.c: separated the generic version of _BSP_clear_hostbridge_errors() into its own file.
* 2007-01-29 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-01-311-1/+1
| | | | | | | | | | | | | | * shared/vme/VMEConfig.h: Added more comments about the semantics of the various symbols BSPs should define in this file. Removed declarations of BSP_VMEInit(), BSP_VMEIrqMgrInstall(). * shared/vme/vmeconfig.c: declare BSP_VMEInit(), BSP_VMEIrqMgrInstall() here. * Makefile.am, shared/vme/README, * shared/vme/vme_universe_dma.c (added): Added glue code implementing the VMEDMA.h API using the vmeUniverse driver.
* * Makefile.am,Till Straumann2007-01-191-1/+1
| | | | | | | | | | * ep1a/Makefile.am, ep1a/preinstall.am, * motorola_powerpc/Makefile.am, motorola_powerpc/preinstall.am, * score603e/Makefile.am, score603e/preinstall.am, * shared/vme/VME.h: moved VME.h from libbsp/powerpc/shared/vme to libbsp/shared/vmeUniverse; eventually, this (and other) VME API headers should migrate to cpukit.
* 2005-11-03 Till Straumann <strauman@slac.stanford.edu>Till Straumann2005-11-041-0/+1
| | | | | | | | | | | * shared/vme/README, shared/vme/vme_universe.c: New files. * Makefile.am, motorola_powerpc/Makefile.am, mvme5500/vme/vmeconfig.c, shared/vme/VME.h, shared/vme/VMEConfig.h, shared/vme/vmeconfig.c: Several VME related upgrades and fixes, hopefully addressing PR#835: Separated API, API-implementation by a specific VME bridge driver and BSP-specific configuration of the driver into different files, describing their purpose in a README. All of these changes use the upgraded vmeUniverse.c driver.
* 2005-11-03 <strauman@slac.stanford.edu>Till Straumann2005-11-041-1/+2
| | | | | | | | | | * shared/irq/openpic_i8259_irq.c: New file. * ChangeLog, Makefile.am, motorola_powerpc/ChangeLog, motorola_powerpc/Makefile.am, shared/irq/irq.c, shared/irq/irq.h, shared/irq/irq_asm.S, shared/irq/irq_init.c: Separated openpic/i8259 specifica from generic irq handling into openpic_i8259_irq.c; added some compilation conditionals to help BSPs without ISA to omit ISA interrupts and calling i8259 code.
* 2005-11-03 <strauman@slac.stanford.edu>Till Straumann2005-11-041-1/+2
| | | | | | | | | | | * shared/startup/pretaskinghook.c, shared/startup/zerobss.c: New files. * Makefile.am, shared/startup/bspstart.c: Split pretaskinghook and zerobss into separate, reusable files; Fixed #PR837 (set exception in ram flag before initializing exceptions); Setup DBATs early, they are needed to access peripherals (Allows mvme2100 to use MMU); moved VME initialization into pretasking hook so that shared interrupts can be used for VME [shared IRQ facility needs functional workspace].
* 2005-11-03 straumanatslacdotstanforddoteduTill Straumann2005-11-031-1/+1
| | | | | | | | * Makefile.am, motorola_powerpc/Makefile.am, mvme5500/Makefile.am, mvme5500/start/preload.S, mvme5500/startup/bspstart.c, shared/startup/bspstart.c: moved linkcmds to shared area for other BSPs to use
* 2005-10-17 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-10-171-1/+52
| | | | | | * Makefile.am: Merge-in shared/Makefile.am. * configure.ac: Remove shared/Makefile.am. * ChangeLog: Merge-in shared/ChangeLog.
* 2004-01-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-131-4/+5
| | | | | * Makefile.am: Use @RTEMS_BSP_FAMILY@ instead of $(RTEMS_BSP_FAMILY).
* 2003-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-091-3/+2
| | | | * Makefile.am: Misc cleanups and fixes.
* 2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-181-1/+1
| | | | * Makefile.am: Reflect having moved aclocal/.
* 2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-161-2/+2
| | | | Makefile.am: Reflect having moved automake.
* 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2002-03-281-1/+0
| | | | | | | * configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * Makefile.am: Remove AUTOMAKE_OPTIONS.
* 2001-11-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2001-11-281-0/+4
| | | | * Makefile.am: Add DIST_SUBDIRS.
* 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-11-091-1/+1
| | | | * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
* 2000-11-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-11-021-1/+1
| | | | * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
* 2000-10-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-10-271-1/+1
| | | | | * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros. Switch to GNU canonicalization.
* Merged from 4.5.0-beta3aJoel Sherrill2000-06-121-2/+2
|
* Patch rtems-rc-20000104-12.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-101-0/+12
which converts the PowerPC BSPs to configuration and more automake. * Besides adding partial automake support, rsp converting all powerpc BSPs to make them compliant to the new configuration scheme, this patch attempts to fix several configuration bugs in powerpc related Makefiles.