summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/powerpc: Remove libcpu/powerpcSebastian Huber2018-03-261-78/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/mpc55xx: Move libcpu content to bspsSebastian Huber2018-03-221-2/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/powerpc: Remove support for mpc505Sebastian Huber2018-02-051-1/+0
| | | | Close #3270.
* Remove make preinstallChris Johns2018-01-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: Remove unused RTEMS_CPU_MODELSebastian Huber2018-01-031-17/+3
|
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* libcpu/powerpc configure logic: Do not built e500 components unused by qoriqJoel Sherrill2014-10-191-1/+7
|
* Virtex5 BSP: Various updates and improvements.Ric Claus2012-12-011-4/+4
| | | | | This BSP now uses the MPC6xx clock driver instead of a modified PPC403 clock driver. Support for the MMU has been added, but is not enabled by default.
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* powerpc/t32mppc: New BSPSebastian Huber2012-05-221-1/+2
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-7/+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.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-4/+0
|
* Add Virtex4 and Virtex5 BSPsRic Claus2012-03-301-3/+7
| | | | | | | | | | | | | | | | | This commit covers at least PR2020, 2022, and 2023. This patch adds all of the code for both BSPs, modifications to libcpu/powerpc for the ppc440, and some updates to the BSPs from follow up review and testing. These BSPs should be good baselines for future development. The configurations used by Ric are custom and have a non-standard NIC. They also do not have a UART. Thus the current console driver just prints to a RAM buffer. The NIC and UART support are left for future work. When the UART support is added, moving the existing "to RAM" console driver to a shared location is likely desirable because boards with no debug UART port are commonly deployed. This would let printk() go to RAM.
* 2011-07-21 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-07-211-1/+4
| | | | | | | | | | | | PR 1799/bsps * new-exceptions/bspsupport/ppc_exc_async_normal.S: New file. * new-exceptions/cpu.c, new-exceptions/cpu_asm.S, new-exceptions/bspsupport/ppc_exc_asm_macros.h, new-exceptions/bspsupport/ppc_exc_global_handler.c, new-exceptions/bspsupport/ppc_exc_prologue.c, new-exceptions/bspsupport/vectors.h: Added support for SPE. * configure.ac, preinstall.am, Makefile.am: Added support for qoriq BSPs.
* 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-021-2/+2
| | | | * configure.ac: Require autoconf-2.68, automake-1.11.1.
* Whitespace removal.Ralf Corsepius2009-11-281-1/+1
|
* updated gen83xx BSPThomas Doerfler2008-07-141-4/+15
| | | | | updated haleakala BSP added MPC55xx BSP
* Remove OLD_EXCEPTIONS.Ralf Corsepius2008-02-191-2/+0
|
* Temporarily re-add OLD_EXCEPTIONS.Ralf Corsepius2008-02-191-0/+2
|
* 2008-02-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-02-191-12/+0
| | | | * configure.ac: Deactivate old-exceptions.
* 2007-12-05 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-12-061-1/+4
| | | | | | * Makefile.am, configure.ac, preinstall.am, new-exceptions/e500_raw_exc_init.c: Started adding support for e500 CPU. Most stuff is borrowed from mpc6xx.
* 2007-09-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-09-111-0/+3
| | | | | * Makefile.am, configure.ac: Do not build networking drivers if networking is disabled.
* compilable release of virtex/gen83xx/gen5200 powerpc adaptations. Merged ↵Thomas Doerfler2007-07-101-2/+5
| | | | many different versions of new exception handling code to shared sources.
* fixed some problems with shared PPC exception handling codeThomas Doerfler2007-07-051-0/+2
|
* 2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-021-1/+1
| | | | * configure.ac: New BUG-REPORT address.
* 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-171-2/+2
| | | | * configure.ac: Require autoconf-2.60. Require automake-1.10.
* 2006-05-16 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-05-161-3/+1
| | | | * configure.ac: Use RTEMS_AMPOLISH3.
* 2005-11-02 straumanatslacdotstanford.eduTill Straumann2005-11-021-0/+2
| | | | | | * ChangeLog, configure.ac, mpc6xx/exceptions/raw_exception.c, shared/include/cpuIdent.c, shared/include/cpuIdent.h: recognize mpc7457 CPU; added definitions for high bats (#4..7) on 7450 CPUs
* Remove ppc403/Makefile.Ralf Corsepius2005-05-111-1/+0
|
* Remove mpc8260/Makefile.Ralf Corsepius2005-05-111-1/+0
|
* Remove mpc8xx/Makefile.Ralf Corsepius2005-05-111-1/+0
|
* Remove mpc6xx/Makefile.Ralf Corsepius2005-05-111-1/+0
|
* Remove mpc5xx/Makefile.Ralf Corsepius2005-05-111-2/+0
| | | | Remove mpc505/Makefile.
* Remove shared/Makefile.Ralf Corsepius2005-05-101-1/+0
|
* Add AMPOLISH3.Ralf Corsepius2005-05-101-0/+4
|
* 2005-02-11 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-02-121-1/+14
| | | | | * configure.ac: subdir-objects. Add compiler check for old/new-style exception processing.
* 2004-11-10 Richard Campbell <richard.campbell@oarcorp.com>Joel Sherrill2004-11-101-1/+5
| | | | | | | | * configure.ac, mpc6xx/exceptions/raw_exception.c, mpc6xx/exceptions/raw_exception.h, mpc6xx/mmu/bat.c, mpc6xx/mmu/bat.h, mpc6xx/mmu/mmuAsm.S, shared/include/cpuIdent.c, shared/include/cpuIdent.h: Add MPC8240 and MPC8245 support. There was also a significant amount of spelling and whitespace cleanup.
* Add MPC7455 support.Eric Norum2004-10-201-0/+2
|
* 2004-10-19 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-10-191-1/+0
| | | | * configure.ac: Remove RTEMS_ENABLE_BARE.
* 2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-09-241-1/+1
| | | | * configure.ac: Require automake > 1.9.
* 2004-04-12 David Querbach <querbach@realtime.bc.ca>Joel Sherrill2004-04-121-3/+5
| | | | | | | | | | | | | | | * README, configure.ac, mpc5xx/Makefile.am, mpc5xx/exceptions/raw_exception.c, mpc5xx/exceptions/raw_exception.h, mpc5xx/timer/timer.c, shared/include/cpuIdent.h: addition of a significant amount of MPC5xx support as part of the addition of the SS555 BSP. * mpc5xx/README, mpc5xx/clock/clock.c, mpc5xx/console-generic/console-generic.c, mpc5xx/include/console.h, mpc5xx/include/mpc5xx.h, mpc5xx/irq/irq.c, mpc5xx/irq/irq.h, mpc5xx/irq/irq_asm.S, mpc5xx/irq/irq_init.c, mpc5xx/vectors/vectors.S, mpc5xx/vectors/vectors.h, mpc5xx/vectors/vectors_init.c: New files. * mpc5xx/exceptions/asm_utils.S: Removed.
* 2004-03-26 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-03-261-1/+1
| | | | * configure.ac: Add 2nd argument (rtems_updir) to RTEMS_TOP.
* 2004-03-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-03-081-1/+5
| | | | * Makefile.am, configure.ac: Reflect having added mpc5xx.
* 2004-01-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-301-1/+1
| | | | | | | * wrapup/Makefile.am: Remove. * configure.ac: Remove wrapup. * shared/Makefile.am: Use automake compilation rules. Build *.rels.
* 2004-01-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-211-3/+5
| | | | | | | | * configure.ac: Require automake >= 1.8.2. * Makefile.am, mpc505/Makefile.am, mpc6xx/Makefile.am, mpc8260/Makefile.am, mpc8xx/Makefile.am, ppc403/Makefile.am, shared/Makefile.am: Use automake compilation rules. Add PREINSTALL_DIRS.
* 2003-12-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-161-9/+0
| | | | | | | | | | | * ppc403/clock/Makefile.am: Remove. * ppc403/console/Makefile.am: Remove. * ppc403/ictrl/Makefile.am: Remove. * ppc403/timer/Makefile.am: Remove. * ppc403/tty_drv/Makefile.am: Remove. * ppc403/vectors/Makefile.am: Remove. * ppc403/Makefile.am: Merge-in Makefile.ams above. * configure.ac: Reflect changes to ppc403/Makefile.ams.
* 2003-12-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-161-6/+0
| | | | | | | | | | | * mpc8xx/clock/Makefile.am: Remove. * mpc8xx/console-generic/Makefile.am: Remove. * mpc8xx/cpm/Makefile.am: Remove. * mpc8xx/exceptions/Makefile.am: Remove. * mpc8xx/mmu/Makefile.am: Remove. * mpc8xx/timer/Makefile.am: Remove. * mpc8xx/Makefile.am: Merge-in Makefile.ams above. * configure.ac: Reflect changes to mpc8xx/Makefile.ams.
* 2003-12-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-161-11/+0
| | | | * configure.ac: Remove mpc6xx/*/Makefile, mpc8260/*/Makefile.
* 2003-12-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-151-2/+0
| | | | | | | * shared/include/Makefile.am: Remove. * shared/src/Makefile.am: Remove. * shared/Makefile.am: Merge-in Makefile.ams above. * configure.ac: Reflect changes above.