summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/idp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-01-23Remove m68k/idp BSPJoel Sherrill22-2053/+0
closes #2546.
2016-01-23Remove m68k/idp BSPJoel Sherrill22-2053/+0
closes #2546.
2015-12-29m68k/idp: Minor Doxygen CleanupJoel Sherrill2-11/+28
2015-12-24api: Remove deprecated NotepadsAun-Ali Zaidi1-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.
2015-12-10bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber1-1/+1
Use the bsp_predriver_hook() instead. Update #2408.
2015-12-08Add RTEMS linker setsSebastian Huber1-0/+2
Update #2408.
2015-07-16Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill1-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
2015-03-09Move libcsupport/include/motorola/*.h to m68k/idp BSPJoel Sherrill4-0/+397
These header files were only used by one BSP and they are hardware dependent. The hardware dependency always made them bad candidates for where they were in the tree. But this fixes that.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-10-20m68k/idp: Fix warningsJoel Sherrill1-0/+1
2014-10-16m68k/idp: Fix warningsJoel Sherrill3-61/+12
2014-10-13idp/clock/ckinit.c: Fix warningsJoel Sherrill1-38/+20
2014-10-09m68k/idp/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix warning ↵Joel Sherrill1-10/+5
and clean up
2014-09-16Use correct prototype of benchmark_timer_read()Joel Sherrill1-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.
2014-08-29Regenerate all preinstall.am files.Chris Johns1-3/+3
With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
2014-08-28Regenerate all preinstall.am files.Joel Sherrill1-7/+7
Apparently, at some point automake output changed and these were not updated.
2014-04-22bsps: Fix TLS support in linker command filesSebastian Huber1-1/+3
The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns4-4/+4
2014-02-04bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber1-0/+18
2014-01-03idp: Add doxygen headers.Szkocsovszki Zsolt3-4/+46
2013-12-03m68k: refactored shared/start.S to shared/start/start.SDaniel Ramirez1-1/+1
2013-08-09Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers1-1/+1
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom1-618/+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.
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-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().
2012-11-07sapi: Delete duplicate declarationsSebastian Huber1-1/+0
2012-11-07sapi: Use rtems_config*_get_microseconds_per_tickSebastian Huber1-1/+1
2012-08-06Revert "Add bspopts.h.in."Gedare Bloom1-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.
2012-07-19Require automake-1.12.2.Ralf Corsépius1-1/+1
2012-07-19Require autoconf-2.69.Ralf Corsépius1-1/+1
2012-05-24Add bspopts.h.in.Ralf Corsépius1-0/+31
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill17-42/+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.
2012-05-07Revert: Remove CVS IdsJoel Sherrill2-0/+6
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius2-6/+0
2012-04-16m68k: use shared setvec.cGedare Bloom1-1/+1
2012-04-16m68k: replace m68k_isr with rtems_isrGedare Bloom2-4/+4
2012-02-01Remove all .cvsignore files.Joel Sherrill2-12/+0
2011-02-112011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+6
* console/mc68ec.c: Use "__asm__" instead of "asm" for improved c99-compliance.
2011-02-092011-02-09 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+7
* timer/timer.c: Include <rtems/btimer.h>. Fix benchmark_timer_read() definition.
2011-02-022011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+6
* configure.ac: Require autoconf-2.68, automake-1.11.1.
2010-04-282010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2-1/+5
* timer/timer.c: Remove warnings.
2010-04-282010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill3-2/+7
* console/leds.c, timer/timer.c: Remove warnings.
2009-12-17 adapted to new prototype for *_write functionThomas Doerfler2-1/+6
2009-11-29Whitespace removal.Ralf Corsepius1-1/+1
2009-11-28Whitespace removal.Ralf Corsepius1-1/+1
2009-10-212009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-3/+4
* make/custom/idp.cfg: Remove RTEMS_BSP_FAMILY.
2009-10-202009-10-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+5
* configure.ac: Don't add -ansi -fasm to CFLAGS.
2009-10-152009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-0/+33
* make/custom/idp.cfg: New (relocated from /make/custom).
2009-09-152009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+5
* configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
2009-07-162009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-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.
2008-12-042008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-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.