summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf52235 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* m68k/mcf52235/*.tcfg: Add fsjffs2gc01 to excluded testsJoel Sherrill2017-01-171-0/+1
|
* testsuite: Add test states to the testsuit configuration files.Chris Johns2016-12-071-25/+25
| | | | | | | | | | | | | | | | 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.
* m68k/mcf52235/make/custom/mcf52235-testsuite.tcfg: Add dl05Joel Sherrill2016-11-031-0/+1
|
* m68k/mcf52235/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill2016-03-301-2/+0
|
* m68k/mcf52235/console/debugio.c: Remove unneeded include of <rtems/mw_uid.h>Joel Sherrill2016-03-291-1/+0
|
* m68k/mcf52235/console/console.c: Remove unneeded include of <rtems/mw_uid.h>Joel Sherrill2016-03-291-1/+0
|
* m68k/mcf52235: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2016-03-292-4/+5
|
* m68k/mcf52235/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-271-1/+0
|
* m68k/.../mcf52235.cfg: Disable per function sectionsJoel Sherrill2016-02-061-2/+4
| | | | updates #2570.
* Use linker set for libio initializationSebastian Huber2016-02-031-1/+1
| | | | Update #2408.
* Doxygen header added to c/src/lib/libbsp/m68k/mcf52235/include/bsp.hMichał Panek2016-01-231-0/+16
|
* m68k/mcf52235: 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 94272 1680 7664 103616 194c0 base_sp.exe 108144 1648 7216 117008 1c910 hello.exe 32528 1216 4912 38656 9700 minimum.exe 113056 1760 7776 122592 1dee0 nsecs.exe 98000 1680 7696 107376 1a370 ticker.exe 95984 1712 11056 108752 1a8d0 unlimited.exe 202224 2272 7840 212336 33d70 cdtest.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 86224 1648 7616 95488 17500 base_sp.exe 98512 1600 7152 107264 1a300 hello.exe 24032 1184 4864 30080 7580 minimum.exe 105520 1728 7712 114960 1c110 nsecs.exe 90112 1648 7632 99392 18440 ticker.exe 86576 1664 10992 99232 183a0 unlimited.exe 185952 2128 7760 195840 2fd00 cdtest.exe
* score: Fix simple timecounter supportSebastian Huber2016-01-191-9/+10
| | | | Update #2502.
* api: Remove deprecated NotepadsAun-Ali Zaidi2015-12-241-3/+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-081-0/+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
* mcf52235/clock/clock.c: Remove unused variable warningJoel Sherrill2015-05-211-1/+0
|
* mcf52235-testsuite.tcfg: Add syscall01Joel Sherrill2015-05-211-0/+1
|
* bsps: Convert clock drivers to use a timecounterAlexander Krutwig2015-05-201-19/+31
| | | | Update #2271.
* m68k/mcf52235/make/custom/mcf52235-testsuite.tcfg: Add tmfine01Joel Sherrill2015-03-171-0/+1
|
* Add fsscandir01 variants as needed to more BSPs testsuite configurationJoel Sherrill2015-03-061-0/+1
|
* 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".
* m68k/mcf52235: Fix warningsJoel Sherrill2014-10-202-0/+6
|
* m68k/mcf52235/startup/init52235.c: Fix warningJoel Sherrill2014-10-191-2/+1
|
* Use correct prototype of benchmark_timer_read()Joel Sherrill2014-09-161-1/+1
| | | | | | | | | | | | | | This change starts with removing the effectively empty file timerdrv.h. The prototypes for benchmark_timer_XXX() were in btimer.h which was not universally used. Thus every use of timerdrv.h had to be changed to btimer.h. Then the prototypes for benchmark_timer_read() had to be adjusted to return benchmark_timer_t rather than int or uint32_t. I took this opportunity to also correct the file headers to separate the copyright from the file description comments which is needed to ensure the copyright isn't propagated into Doxygen output.
* 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.
* Regenerate all preinstall.am files.Joel Sherrill2014-08-281-3/+3
| | | | | 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/+27
| | | | | | | | 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.
* mcf52235/configure.ac: Delete junk lineJoel Sherrill2014-04-241-1/+0
|
* 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.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-215-5/+5
|
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-041-0/+17
|
* libbsp tm27.h: Add Doxygen file header to all tm27.hCynthia Rempel2014-01-091-0/+6
|
* Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers2013-08-091-2/+2
|
* termios: Update due to API changesSebastian Huber2013-06-251-10/+7
| | | | | Termios notifies now the driver about an inactive transmit with the length argument set to zero.
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-199/+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.
* bsps: Use <bsp/bootcard.h>Sebastian Huber2012-12-071-6/+4
|
* 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().
* sapi: Use rtems_config*_get_microseconds_per_tickSebastian Huber2012-11-071-2/+2
|
* 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-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+31
|
* Remove CVS Id Strings (manual edits after script)Joel Sherrill2012-05-111-6/+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-117-18/+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
|