summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme147 (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-11-24Remove coverhd.hSebastian Huber3-111/+0
This header file contained timing overhead values which are hard to maintain. Update #3254.
2017-11-22bsps: Simplify RTEMS_BSP_CLEANUP_OPTIONSSebastian Huber2-1/+2
Remove BSP-specific defaults for RTEMS_BSP_CLEANUP_OPTIONS to simplify the BSP configuration and documentation. Change defaults to: BSP_PRESS_KEY_FOR_RESET=0 BSP_RESET_BOARD_AT_EXIT=1 BSP_PRINT_EXCEPTION_CONTEXT=1
2017-11-17getentropy: Add cpu counter based implementation.Christian Mauderer1-0/+1
Update #3239.
2016-12-12Rename is_internal to always_set_to_falseSebastian Huber1-1/+1
Update #2825.
2016-09-23bsp/mvme147*: Fix linker issueSebastian Huber1-3/+1
The GNU linker does not allow a nonconstant expression for a region length.
2016-03-30m68k/mvme147/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill1-1/+0
2016-03-30m68k/mvme147/console/console.c: Do not include <rtems/iosupp.h>Joel Sherrill1-0/+1
2016-03-29m68k/mvme147: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2-2/+2
2016-03-27m68k/mvme147/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2-1/+1
2016-02-03Use linker set for libio initializationSebastian Huber1-2/+2
Update #2408.
2016-01-25m68k/mvme*: switch to shared linkcmds.baseJoel Sherrill1-184/+11
updates #2542.
2016-01-22m68k/mvme147: Add per-section compilation and linking support.Ralph Holmes1-0/+3
The size of the sample executables without this option were: text data bss dec hex filename 79696 1600 32144 113440 1bb20 base_sp.exe 89008 1584 31728 122320 1ddd0 hello.exe 36512 1184 28480 66176 10280 minimum.exe 523824 5520 43632 572976 8be30 fileio.exe 98832 1696 32256 132784 206b0 nsecs.exe 146736 1984 32736 181456 2c4d0 paranoia.exe 84016 1616 32176 117808 1cc30 ticker.exe 82384 1632 35584 119600 1d330 unlimited.exe 828000 21408 39216 888624 d8f30 cxx_iostream.exe 178832 2032 32288 213152 340a0 cdtest.exe 173088 2112 33968 209168 33110 capture.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 72864 1584 32080 106528 1a020 base_sp.exe 81200 1536 31664 114400 1bee0 hello.exe 29792 1152 28432 59376 e7f0 minimum.exe 508480 5504 43296 557280 880e0 fileio.exe 93024 1680 32192 126896 1efb0 nsecs.exe 139520 1952 32672 174144 2a840 paranoia.exe 77920 1600 32112 111632 1b410 ticker.exe 74896 1600 35504 112000 1b580 unlimited.exe 156224 2048 31936 190208 2e700 cxx_iostream.exe 164032 1984 32192 198208 30640 cdtest.exe 164144 2064 33904 200112 30db0 capture.exe
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 contents of libcsupport/include/zilog into libbsp/sharedJoel Sherrill2-0/+13
Only a few BSPs use this and it should not have been in libcsupport.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-10-23bsps: Move extern "C" to not cover includesSebastian Huber1-4/+4
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-10-19m68k/mvme147: Fix warningsJoel Sherrill3-64/+17
2014-10-13mvme147/clock/ckinit.c: Fix warningsJoel Sherrill1-24/+6
2014-10-09m68k/mvme147/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix ↵Joel Sherrill1-13/+6
warning 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 Johns9-9/+9
2014-02-04bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber1-0/+18
2014-01-14libbsp m68k: Add Doxygen file header to coverhd.hCynthia Rempel1-1/+7
2014-01-09libbsp tm27.h: Add Doxygen file header to all tm27.hCynthia Rempel1-2/+6
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-598/+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-12-07score: rtems_initialize_start_multitasking()Sebastian Huber1-7/+0
Do not return from rtems_initialize_start_multitasking() and call rtems_fatal() instead with a fatal source of RTEMS_FATAL_SOURCE_EXIT and a fatal code with the exit status. Remove all bsp_cleanup() functions. The boot_card() is now a no return function.
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber2-2/+12
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-14bsps: Include <bsp/bootcard.h>Sebastian Huber1-2/+1
Use <bsp/bootcard.h> to get prototype for bsp_cleanup(). Fix bsp_cleanup() definition if necessary.
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 Sherrill15-35/+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-07-132011-07-13 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2-1/+11
PR 1824/cpukit * startup/bspclean.c: Return exit/shutdown status back to boot_card(). boot_card() propagates this to bsp_cleanup() and returns it to the assembly that started the application. bsp_cleanup() prototype changed.
2011-02-112011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-4/+9
* startup/bspclean.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-06-142010-06-14 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2-1/+5
* startup/bspclean.c: Spelling.