summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/shsim (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* score: Introduce Thread_Entry_informationSebastian Huber2016-01-111-1/+1
| | | | | | | This avoids potential dead code in _Thread_Handler(). It gets rid of the dangerous function pointer casts. Update #2514.
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+0
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* bsps/sh: Disable fileio test due to lack of memorySebastian Huber2015-12-092-0/+2
|
* Add RTEMS linker setsSebastian Huber2015-12-081-1/+2
| | | | Update #2408.
* Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill2015-07-161-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
* simsh2e-testsuite.tcfg: Add fileioJoel Sherrill2015-05-211-0/+1
|
* simsh1-testsuite.tcfg: Add fileioJoel Sherrill2015-05-211-0/+1
|
* simsh*.tcfg: Add iostreamJoel Sherrill2015-04-234-0/+4
|
* simsh*: Disable interrupt critical section testsJoel Sherrill2015-04-014-0/+4
| | | | These do not run reliably on this simulator.
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* bsps: Move extern "C" to not cover includesSebastian Huber2014-10-231-4/+4
| | | | Some includes may use C++ and this conflicts if surrounded extern "C".
* sh/shsim: Further clean up and fixes to previous commitJoel Sherrill2014-10-194-2/+5
|
* SH libcpu and libbsp: Fix warningsJoel Sherrill2014-10-165-23/+37
|
* Add console-polled.h and update all BSPs that should use it.Joel Sherrill2014-10-103-3/+9
| | | | | | | | | | | 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.
* Regenerate all preinstall.am files.Chris Johns2014-08-291-3/+3
| | | | | With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
* Regenerate all preinstall.am files.Joel Sherrill2014-08-281-6/+6
| | | | | Apparently, at some point automake output changed and these were not updated.
* simsh4-testsuite.tcfg: new fileJoel Sherrill2014-08-251-1/+5
|
* simsh2e-testsuite.tcfg: new fileJoel Sherrill2014-08-251-1/+5
|
* shsim/bsp_specs: Account for big/little endianJoel Sherrill2014-08-251-1/+1
|
* bsps: Do not build tests that require a tick interrupt.Chris Johns2014-05-284-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* multiple BSPs: Remove BSP_SMALL_MEMORYJoel Sherrill2014-05-061-2/+0
|
* testsuite: Add a per BSP test check for tests not to build.Chris Johns2014-05-052-0/+16
| | | | | | | | Provide a file per BSP to list tests that do not build for a BSP. This change removes the BSP_SMALL_MEMORY hack from the code. That hack was a mistake. Provide configuration files for each BSP with tests that cannot build.
* shsim: Correct linking for C++Joel Sherrill2014-04-222-16/+13
|
* shsim: Add printk() support and move all code to console subdirectoryJoel Sherrill2014-04-224-10/+55
|
* bsps: Fix TLS support in linker command filesSebastian Huber2014-04-222-2/+6
| | | | | The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
* shsim/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill2014-03-211-12/+2
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-213-3/+3
|
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-042-4/+32
|
* bsps: Simplify FreeBSD linker setsSebastian Huber2013-12-161-15/+5
|
* bsp: Move bspstart.c to sh/shared/startup/Szkocsovszki Zsolt2013-12-141-1/+1
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-705/+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.
* score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber2012-11-151-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().
* Revert "Add bspopts.h.in."Gedare Bloom2012-08-061-41/+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.
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* shsim linkcmds: Add new FreeBSD TCP/IP stack sectionsJoel Sherrill2012-07-141-0/+24
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+41
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1113-32/+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-072-0/+6
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-042-6/+0
|
* Remove all .cvsignore files.Joel Sherrill2012-02-012-12/+0
|
* 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-022-2/+6
| | | | * configure.ac: Require autoconf-2.68, automake-1.11.1.
* 2011-02-01 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-02-014-7/+12
| | | | | * Makefile.am, preinstall.am, trap34/console-io.c: Install syscall.h as bsp/syscall.h to avoid confusing autoconf.
* 2010-04-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-04-072-5/+4
| | | | * start/start.S: Verify boot_card() is passed a NULL.
* Whitespace removal.Ralf Corsepius2009-11-301-2/+2
|
* Whitespace removal.Ralf Corsepius2009-11-281-2/+2
|
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-215-4/+7
| | | | | | | * make/custom/simsh1.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/simsh2.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/simsh2e.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/simsh4.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-202-1/+5
| | | | * configure.ac: Don't add -ansi -fasm to CFLAGS.
* 2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-155-0/+83
| | | | | | | * make/custom/simsh1.cfg: New (relocated from /make/custom). * make/custom/simsh2.cfg: New (relocated from /make/custom). * make/custom/simsh2e.cfg: New (relocated from /make/custom). * make/custom/simsh4.cfg: New (relocated from /make/custom).
* 2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-09-152-2/+5
| | | | * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.