summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gumstix/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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".
* gumstix/include/bsp.h: Do not include libchip/serial to avoid conflicts when ↵Joel Sherrill2014-10-101-1/+6
| | | | building libchip/rtc
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-212-2/+2
|
* gumstix: added new doxygenDaniel Ramirez2013-12-222-5/+38
|
* 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: Delete duplicate declarationsSebastian Huber2012-11-071-2/+0
|
* Revert "Add bspopts.h.in."Gedare Bloom2012-08-061-37/+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.
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+37
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-112-4/+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.
* General - Remove extraneous blank line in license messageJoel Sherrill2012-05-032-0/+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.
* Remove all .cvsignore files.Joel Sherrill2012-02-011-4/+0
|
* 2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-04-301-0/+2
| | | | | | * Makefile.am, preinstall.am: Added generic interrupt support modules. * include/bsp.h: Define BSP_FEATURE_IRQ_EXTENSION. * startup/bspstart.c, rtl8019/rtl8019.c: Interrupt support changes.
* 2009-09-16 Roxana Leontie <roxana.leontie@gmail.com>Joel Sherrill2009-09-161-0/+1
| | | | | * configure.ac, fb/fb.c, include/bsp.h: updates made for porting to Nano-X and make testing easyer
* 2009-08-21 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-08-211-3/+0
| | | | | * include/bsp.h: Eliminate BSPs defining NUMBER_OF_TERMIOS_PORTS. Should be automatically handled by confdefs.h or the application.
* 2009-08-21 Xi Yang <hiyangxi@gmail.com>Joel Sherrill2009-08-211-0/+19
| | | | | | | | | * Makefile.am: Add fb/fb.c add rtl8019 Ethernet card support * preinstall.am: Install skyeye_fb.h, Install wd80x3 * fb/fb.c, fb/skyeye_fb.h: Framebuffer support for skyeye simulator * rtl8019/wd80x3, rtl8019/rtl8019.c: rtl8019 support * startup/memmap.c: Change the size of Map I/O to 1216M * bsp/bsp.h: Add rtl8019 related infomation
* 2009-06-29 Xi Yang <hiyangxi@gmail.com>Joel Sherrill2009-06-292-34/+4
| | | | | | | | | * Makefile.am: Update to current style. * bsp_specs: Fix warning for _start. * start/start.S: Proper attribution for origin. * startup/bspstart.c: Add Skyeye bsp_reset() on Skyeye. * include/.cvsignore: New file. * include/bspopts.h.in: Removed.
* 2009-06-05 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-06-051-0/+18
| | | | | * configure.ac, include/bspopts.h.in: Add ON_SKYEYE option to at least enable fast idle mode. Also added some standard BSP options.
* 2009-06-04 Xi Yang <hiyangxi@gmail.com>Joel Sherrill2009-06-043-0/+98
* .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac, preinstall.am, console/uarts.c, include/bsp.h, include/bspopts.h.in, include/tm27.h, start/start.S, startup/bspstart.c, startup/linkcmds, startup/memmap.c: New files.