summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/ods68302 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Obsolete and remove m68k/ods68302 BSPJoel Sherrill2016-01-2329-4514/+0
| | | | closes #2544.
* m68k/ods68302: Add per-section compilation and linking support.Ralph Holmes2016-01-211-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The size of the sample executables without this option were: text data bss dec hex filename 115696 1632 22688 140016 222f0 base_sp.exe 114416 1600 22288 138304 21c40 hello.exe 74768 1360 19040 95168 173c0 minimum.exe 129744 1712 22784 154240 25a80 nsecs.exe 200544 2000 23280 225824 37220 paranoia.exe 120000 1632 22720 144352 233e0 ticker.exe 118464 1664 26128 146256 23b50 unlimited.exe 191904 2224 22864 216992 34fa0 cdtest.exe 186416 2128 24512 213056 34040 capture.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 75840 1616 22368 99824 185f0 base_sp.exe 90128 1568 21968 113664 1bc00 hello.exe 31968 1184 18720 51872 caa0 minimum.exe 96256 1696 22480 120432 1d670 nsecs.exe 176816 1984 22960 201760 31420 paranoia.exe 80896 1616 22400 104912 199d0 ticker.exe 77856 1632 25808 105296 19b50 unlimited.exe 176304 2096 22528 200928 310e0 cdtest.exe 176944 2080 24192 203216 319d0 capture.exe
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+0
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* Add RTEMS linker setsSebastian Huber2015-12-083-0/+6
| | | | 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
* ods68302-testsuite.tcfg: Add iosteamJoel Sherrill2015-04-231-0/+1
|
* ods68302-testsuite.tcfg: Add fileioJoel Sherrill2015-04-031-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/ods68302: Fix warningsJoel Sherrill2014-10-168-84/+67
|
* ods68302/clock/ckinit.c: Fix warningsJoel Sherrill2014-10-131-25/+7
|
* 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-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-7/+7
| | | | | Apparently, at some point automake output changed and these were not updated.
* multiple BSPs: Remove BSP_SMALL_MEMORYJoel Sherrill2014-05-061-1/+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.
* bsps: Fix TLS support in linker command filesSebastian Huber2014-04-223-3/+9
| | | | | The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
* ods68302/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill2014-03-211-17/+3
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-215-5/+5
|
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-043-1/+49
|
* libbsp m68k: Add Doxygen file header to coverhd.hCynthia Rempel2014-01-141-1/+7
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-688/+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-1/+1
|
* 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-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-112-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-1125-55/+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
|
* 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-012-12/+0
|
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-114-29/+34
| | | | | * include/bsp.h, startup/m68k-stub.c, startup/trace.c: Use "__asm__" instead of "asm" for improved c99-compliance.
* 2011-02-09 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-092-1/+7
| | | | | * timer/timer.c: Include <rtems/btimer.h>. Fix benchmark_timer_read() definition.
* 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-06-22 Chris Johns <chrisj@rtems.org>Chris Johns2010-06-222-1/+5
| | | | * startup/m68k-stub.c: PR 1539. Fix buffer overrun.
* 2010-04-30 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-302-3/+6
| | | | * include/bsp.h: Add BSP_SMALL_MEMORY.
* 2010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-282-3/+7
| | | | * startup/m68k-stub.c: Remove warnings.
* Whitespace removal.Ralf Corsepius2009-11-291-1/+1
|
* Whitespace removal.Ralf Corsepius2009-11-281-1/+1
|
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-4/+4
| | | | * make/custom/ods68302.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/+39
| | | | * make/custom/ods68302.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-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-28 Chris Johns <chrisj@rtems.org>Chris Johns2009-04-282-2/+6
| | | | * startup/cpuboot.c: 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.