summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/gensh1 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* testsuite: Add test states to the testsuit configuration files.Chris Johns2016-12-071-4/+4
| | | | | | | | | | | | | | | | Change the testsuite configuration files to hold state information about a test. The states are: exclude - Do not build the test expected-fail - The test is expected to fail indeterminate - The test may pass or may fail A message is printed just after the test's BEGIN message to indicate there is a special state for the test. No state message means the test is expected to pass. This support requires tests are correctly written to the use standard support to begin and end a test.
* sh/gensh1: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2016-03-291-1/+0
|
* sh/gensh1/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-271-1/+0
|
* sh/gensh1: Add per-section compilation and linking supportJoel Sherrill2016-03-101-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updates #2577. For the gensh1 BSP variant without this option sample executables sizes were as follows: text data bss dec hex filename 63586 7626 6788 78000 130b0 ticker.exe 25042 3170 2872 31084 796c minimum.exe 337626 47818 36260 421704 66f48 pppd.exe 141298 20114 9684 171096 29c58 capture.exe 76738 8038 6865 91641 165f9 nsecs.exe 130658 18522 7356 156536 26378 paranoia.exe 144274 22874 7844 174992 2ab90 cdtest.exe 60802 6810 6756 74368 12280 base_sp.exe 63138 7046 10580 80764 13b7c unlimited.exe 77074 5402 6748 89224 15c88 hello.exe 201686 19922 14084 235692 398ac loopback.exe For the gensh1 BSP variant with this option sample executables sizes were as follows: text data bss dec hex filename 59298 7054 6760 73112 11d98 ticker.exe 13490 1502 1844 16836 41c4 minimum.exe 298274 40526 35440 374240 5b5e0 pppd.exe 133634 19278 9664 162576 27b10 capture.exe 73106 7446 6841 87393 15561 nsecs.exe 124562 17926 7320 149808 24930 paranoia.exe 138738 12026 7820 158584 26b78 cdtest.exe 55218 6234 6732 68184 10a58 base_sp.exe 53474 5422 9524 68420 10b44 unlimited.exe 66898 3766 5688 76352 12a40 hello.exe 179362 14206 13924 207492 32a84 loopback.exe
* Use linker set for libio initializationSebastian Huber2016-02-031-1/+1
| | | | Update #2408.
* api: Remove deprecated NotepadsAun-Ali Zaidi2015-12-241-2/+0
| | | | | | | | | | | | | | | | | | | | | | | Notepads where a feature of RTEMS' tasks that simply functioned in the same way as POSIX keys or threaded local storage (TLS). They were introduced well before per task variables, which are also deprecated, and were barely used in favor of their POSIX alternatives. In addition to their scarce usage, Notepads took up unnecessary memory. For each task: - 16 32-bit integers were allocated. - A total of 64 bytes per task per thread. This is especially critical in low memory and safety-critical applications. They are also defined as uint32_t, and therefore are not guaranteed to hold a pointer. Lastly, they are not portable solutions for SMP and uniprocessor systems, like POSIX keys and TLS. updates #2493.
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+1
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* bsps/sh: Disable fileio test due to lack of memorySebastian Huber2015-12-091-0/+1
|
* 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
* gensh1-testsuite.tcfg: Add iostreamJoel Sherrill2015-04-231-0/+1
|
* gensh1/include/bsp.h: Add needed prototypeJoel Sherrill2015-03-091-0/+7
|
* 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 libcpu and libbsp: Fix warningsJoel Sherrill2014-10-161-3/+6
|
* Regenerate all preinstall.am files.Joel Sherrill2014-08-281-5/+5
| | | | | Apparently, at some point automake output changed and these were not updated.
* 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-051-0/+8
| | | | | | | | 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.
* gensh1: Correct linking for C++Joel Sherrill2014-04-222-16/+8
|
* libcpu/sh: Build cache stubs so apps usign cache API linkJoel Sherrill2014-04-221-1/+2
|
* bsps: Fix TLS support in linker command filesSebastian Huber2014-04-221-1/+3
| | | | | The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
* gensh1/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill2014-03-211-10/+2
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-214-4/+4
|
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-041-3/+17
|
* libbsp sh: Add Doxygen file header to coverhd.hCynthia Rempel2014-01-141-1/+7
|
* bsp: Move bspstart.c to sh/shared/startup/Szkocsovszki Zsolt2013-12-141-1/+1
|
* bsps: Delete bspreset_fatal.cSebastian Huber2013-06-241-1/+1
| | | | Use bspreset_loop.c instead. This avoids infinite recursion.
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-636/+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-38/+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
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+38
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-119-21/+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.
* 2010-04-29 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-292-0/+6
| | | | * include/bsp.h: Add BSP_SMALL_MEMORY.
* 2010-04-24 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-04-242-4/+4
| | | | * start/start.S: Verify boot_card is invoked properly with argc, argv.
* Whitespace removal.Ralf Corsepius2009-11-301-1/+1
|
* Whitespace removal.Ralf Corsepius2009-11-281-2/+2
|
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-4/+4
| | | | * make/custom/gensh1.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-152-0/+30
| | | | * make/custom/gensh1.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.
* 2009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-07-162-10/+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-28 Chris Johns <chrisj@rtems.org>Chris Johns2009-04-282-2/+9
| | | | * start/start.S: Update for boot_card command line change.
* 2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-12-042-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-02 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-10-024-38/+7
| | | | | * Makefile.am, preinstall.am: Use shared tm27.h stub. * include/tm27.h: Removed.