summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m32r (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-16Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill1-2/+2
This was done by the following script run from libbsp: find * -name bsp.h | xargs -e grep -l "#ifndef.*_BSP_H" | while read b do echo $b cpu=`echo $b | cut -d'/' -f1 | tr '[:lower:]' '[:upper:]' ` bsp=`echo $b | cut -d'/' -f2 | tr '[:lower:]' '[:upper:]' ` g="LIBBSP_${cpu}_${bsp}_BSP_H" # echo $g sed -e "s/ifndef _BSP_H/ifndef ${g}/" \ -e "s/define _BSP_H/define ${g}/" \ -i $b done
2015-05-21Multiple bsp_specs: Change *(old_endfile) to %(old_endfile)Joel Sherrill1-1/+1
Fix typo. closes 2345.
2014-12-05Update bug report URLSebastian Huber2-2/+2
2014-10-23bsps: Move extern "C" to not cover includesSebastian Huber1-4/+4
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-10-10Add console-polled.h and update all BSPs that should use it.Joel Sherrill3-1/+7
The file console-polled.h provides the prototypes for the three required methods when implementing a single port polled console driver. This paradigm is common on simulators and simple hardware. + Updated the BSPs Makefile.am to make console-polled.h available. + Regenerated the BSPs preinstall.sm. + Updated console support files to include <bsp/console-polled.h>. + Updated console support files to make printk() support method static.
2014-08-29Regenerate all preinstall.am files.Chris Johns1-6/+6
With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
2014-08-28Regenerate all preinstall.am files.Joel Sherrill1-3/+3
Apparently, at some point automake output changed and these were not updated.
2014-05-28bsps: Do not build tests that require a tick interrupt.Chris Johns1-0/+5
The following BSPs do not have tick support so the tests fail: arm1136jfs arm1136js arm7tdmi arm920 armcortexa9 (does not run any more) avrtest h8sim h8sxsim m32csim m32rsim moxiesim simsh1 simsh2 simsh4 v850e1sim v850e2sim v850e2v3sim v850esim v850essim v850sim This list was provided by Joel in the following post: http://www.rtems.org/pipermail/rtems-devel/2014-April/006526.html
2014-04-29bsps/m32r: Fix bsp_specsSebastian Huber1-6/+4
2014-04-22bsps: Fix TLS support in linker command filesSebastian Huber1-1/+3
The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
2014-03-21m32rsim/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill1-17/+0
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns4-4/+4
2014-02-24bsps: Add empty cache managerSebastian Huber1-0/+5
This is necessary to add tests that use the cache manager. For example to get better estimates of worst-case timings.
2014-02-04bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber1-0/+14
2013-12-30m32rsim: Add doxygen headers.Szkocsovszki Zsolt3-3/+45
2013-03-18bsps: Support DWARF extensionSebastian Huber1-0/+2
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom2-589/+0
This commit deletes all RTEMS ChangeLog files. These files have been abandoned since converting to git version control. The historical data may be recovered by checking out any commit before this one. Most of the contents of these ChangeLog files can also be found in the git log. Two external ChangeLog files, ChangeLog.slac and ChangeLog.zlib, remain.
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-08-06Revert "Add bspopts.h.in."Gedare Bloom1-31/+0
This reverts commit daffa606cc4a45d93c1f0f4fe365fde0fda6acbb. Conflicts: c/src/lib/libbsp/arm/lpc24xx/include/bspopts.h.in c/src/lib/libbsp/powerpc/mpc55xxevb/include/bspopts.h.in c/src/lib/libbsp/powerpc/qoriq/include/bspopts.h.in Manually deleted conflicting files.
2012-07-19Require automake-1.12.2.Ralf Corsépius2-2/+2
2012-07-19Require autoconf-2.69.Ralf Corsépius2-2/+2
2012-05-24Add bspopts.h.in.Ralf Corsépius1-0/+31
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill12-30/+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.
2012-05-07Revert: Remove CVS IdsJoel Sherrill4-0/+12
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius4-12/+0
2012-02-01Remove all .cvsignore files.Joel Sherrill3-21/+0
2011-06-202011-06-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+4
* Makefile.am: Don't reference non-existing files.
2011-02-112011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+6
* include/bsp.h: Use "__asm__" instead of "asm" for improved c99-compliance.
2011-02-022011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius4-4/+12
* configure.ac: Require autoconf-2.68, automake-1.11.1.
2011-02-012011-01-31 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-0/+23
* startup/bspreset.c: New file.
2011-01-312011-01-31 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill6-29/+25
* Makefile.am, configure.ac, console/console-io.c, include/bsp.h, start/start.S: Create dedicated bsp_reset() and clean up.
2010-05-312010-05-31 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2-5/+6
* start/start.S: Pass 0/NULL for argc/argv.
2009-11-30Whitespace removal.Ralf Corsepius1-1/+1
2009-11-28Whitespace removal.Ralf Corsepius3-3/+3
2009-10-212009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-3/+4
* make/custom/m32rsim.cfg: Remove RTEMS_BSP_FAMILY.
2009-10-202009-10-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+5
* configure.ac: Don't add -ansi -fasm to CFLAGS.
2009-10-152009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-0/+25
* make/custom/m32rsim.cfg: New (relocated from /make/custom).
2009-09-152009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+5
* configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
2009-07-162009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-1/+8
* configure.ac: Rename BSP_BOOTCARD_OPTIONS to RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs have the same options.
2009-04-282009-04-28 Chris Johns <chrisj@rtems.org>Chris Johns2-0/+9
* start/start.S: Update for boot_card command line change.
2008-12-042008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-2/+8
* bsp_specs: Move -e start from *link to *startfile to avoid warning for undefined entry symbol when linking relocatables with binutils 2.19.
2008-10-032008-10-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2-0/+12
* .cvsignore: New file.
2008-10-022008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill4-0/+49
* ChangeLog, Makefile.am, acinclude.m4, configure.ac: New files.
2008-10-022008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill14-0/+1212
* .cvsignore, ChangeLog, Makefile.am, bsp_specs, configure.ac, preinstall.am, console/console-io.c, console/syscalls.S, console/trap0.S, include/.cvsignore, include/bsp.h, include/tm27.h, start/start.S, startup/linkcmds: New files.