summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5206elite (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build-system: Parallel build all subdirs.Chris Johns2017-05-241-1/+1
|
* testsuite: Add test states to the testsuit configuration files.Chris Johns2016-12-071-2/+2
| | | | | | | | | | | | | | | | 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.
* mcf5206elite/make/custom/mcf5206elite-testsuite.tcfg: Add dl05Joel Sherrill2016-11-031-0/+1
|
* bsps/m68k: Add libatomic support to some bsp_specsSebastian Huber2016-09-231-1/+1
| | | | Update #2695.
* libchip: Simplify RTC driverSebastian Huber2016-07-041-2/+0
|
* m68k/mcf5206elite/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill2016-03-301-1/+0
|
* m68k/mcf5206elite/include/bsp.h: Remove unnecessary include of <rtems/rtc.h>Joel Sherrill2016-03-301-1/+0
|
* m68k/mcf5206elite: Remove include of <rtems/console.h> from <bsp.h> and fix ↵Joel Sherrill2016-03-292-1/+1
| | | | warnings
* m68k/mcf5206elite/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-271-1/+0
|
* m68k/.../mcf5206elite.cfg: Disable per function sectionsJoel Sherrill2016-02-061-2/+4
| | | | updates #2572.
* Use linker set for libio initializationSebastian Huber2016-02-031-2/+1
| | | | Update #2408.
* m68k/mcf5206elite: Add per-section compilation and linking support.Ralph Holmes2016-01-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The size of the sample executables without this option were: text data bss dec hex filename 95264 1680 8928 105872 19d90 base_sp.exe 109184 1648 8512 119344 1d230 hello.exe 32608 1216 4912 38736 9750 minimum.exe 575040 5584 20400 601024 92bc0 fileio.exe 114528 1760 9024 125312 1e980 nsecs.exe 194864 2048 9520 206432 32660 paranoia.exe 99120 1680 8944 109744 1acb0 ticker.exe 97520 1712 12352 111584 1b3e0 unlimited.exe 869136 21920 16016 907072 dd740 cxx_iostream.exe 203264 2256 9104 214624 34660 cdtest.exe 197120 2176 10752 210048 33480 capture.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 86768 1632 8864 97264 17bf0 base_sp.exe 99776 1584 8448 109808 1acf0 hello.exe 23808 1168 4864 29840 7490 minimum.exe 557808 5552 20080 583440 8e710 fileio.exe 107168 1728 8976 117872 1cc70 nsecs.exe 186032 2016 9456 197504 30380 paranoia.exe 91408 1632 8896 101936 18e30 ticker.exe 88336 1648 12288 102272 18f80 unlimited.exe 178768 2192 8752 189712 2e510 cxx_iostream.exe 186528 2128 9008 197664 30420 cdtest.exe 186640 2112 10688 199440 30b10 capture.exe
* 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.
* Add RTEMS linker setsSebastian Huber2015-12-082-0/+4
| | | | 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
* mcf5206elite/include/i2c.h: Fix spelling errorJoel Sherrill2015-01-231-1/+1
|
* bsp/mcf5206elite: Remove <i2c.h> inlude in <bsp.h>Sebastian Huber2015-01-142-3/+1
| | | | This prevents a compile-time error in libtests/i2c01.
* Update bug report URLSebastian Huber2014-12-052-2/+2
|
* 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".
* mcf5206 libcpu and mcf5206elite: Fix warningsJoel Sherrill2014-10-195-481/+463
|
* bsps: Fix build errorSebastian Huber2014-09-182-5/+0
| | | | Fix build error introduced in f535fe5311978af53635c2da8e5cb10ef9d78802.
* Regenerate all preinstall.am files.Chris Johns2014-08-291-6/+6
| | | | | With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
* Add More Testsuite Configuration Files and Update Existing OnesJoel Sherrill2014-07-161-0/+7
| | | | | | | The first pass at building these was without networking enabled. This pass addresses that plus accounts for some new BSPs which needed testsuite.tcfg files and BSPs which could not link tests which had been added since the first pass.
* 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.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-2119-19/+19
|
* bsps: Add empty cache managerSebastian Huber2014-02-241-1/+5
| | | | | This is necessary to add tests that use the cache manager. For example to get better estimates of worst-case timings.
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-042-0/+34
|
* libbsp m68k: Add Doxygen file header to coverhd.hCynthia Rempel2014-01-141-0/+6
|
* libbsp tm27.h: Add Doxygen file header to all tm27.hCynthia Rempel2014-01-091-2/+6
|
* score: Merge sysstate API into one fileSebastian Huber2013-07-241-0/+1
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-082-737/+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-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.
* Require automake-1.12.2.Ralf Corsépius2012-07-192-2/+2
|
* Require autoconf-2.69.Ralf Corsépius2012-07-192-2/+2
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+31
|
* Remove CVS Id Strings (manual edits after script)Joel Sherrill2012-05-113-9/+0
| | | | | | These modifications were required by hand after running the script. In some cases, the file names did not match patterns. In others, the format of the file did not match any common patterns.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1122-48/+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-074-0/+12
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-044-12/+0
|
* General - Remove extraneous blank line in license messageJoel Sherrill2012-05-033-3/+0
| | | | | | | | | | | | | Many files had an extra blank line in the license text found in the file header. This patch removes that line. * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * * http://www.rtems.com/license/LICENSE. The script that did this also turned off execute permission when it was turned on incorrectly.
* m68k: use shared setvec.cGedare Bloom2012-04-161-1/+1
|
* m68k: replace m68k_isr with rtems_isrGedare Bloom2012-04-161-2/+2
|
* Remove all .cvsignore files.Joel Sherrill2012-02-013-20/+0
|
* 2011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-252-4/+8
| | | | | | * configure.ac: Remove RTEMS_CANONICAL_TARGET_CPU. Remove AC_ARG_VAR([RTEMS_BSP],[]). Add RTEMS_ENV_RTEMSBSP.
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-113-4/+9
| | | | | * include/bsp.h startup/init5206e.c: Use "__asm__" instead of "asm" for improved c99-compliance.
* 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-024-4/+12
| | | | * configure.ac: Require autoconf-2.68, automake-1.11.1.
* 2011-01-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2011-01-281-1/+1
| | | | | * mcf5206elite/tools/runtest: Fix typo where license said found in found in.
* 2010-04-27 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-272-16/+5
| | | | * startup/init5206e.c: Remove warnings.