summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bootcard.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* 2007-05-09 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-05-091-18/+0
| | | | | * bootcard.c: Move __fini call to inside executive for symmettry with __init call.
* 2007-04-17 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-04-171-1/+1
| | | | | | * bootcard.c: RTEMS Workspace now defaults to not being zeroed. This significantly speeds up boot time on targets not requiring memory to be touched at boot time.
* 2007-03-09 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-03-091-1/+1
| | | | * bootcard.c: Change XXX to real comment.
* 2006-12-13 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-12-131-2/+1
| | | | | PR 1190/bsps * bootcard.c: Remove status since unused.
* 2006-11-15 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-11-151-8/+32
| | | | | | * bootcard.c: Merge c_rtems_main() into boot_card(). This eliminated a file and simplified initialization. * main.c: Removed.
* Remove duplicate white lines.Ralf Corsepius2004-04-211-2/+0
|
* Remove stray white spaces.Ralf Corsepius2004-04-211-2/+2
|
* 2003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-09-041-1/+1
| | | | | | * bootcard.c, bspclean.c, clockdrv_shell.c, console-polled.c, console.c, ide_ctrl.c, main.c, sbrk.c, setvec.c, tod.c, tod.h, include/coverhd.h: URL for license changed.
* 2001-10-22 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2001-10-221-3/+3
| | | | | * bootcard.c: Use __USE_INIT_FINI__ since USE_INIT_FINI pollutes the application namespace.
* 2001-09-28 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2001-09-281-6/+9
| | | | | * shared/bootcard.c, shared/main.c: Now call int c_rtems_main() not main().
* 2001-09-27 Eric Norum <eric.norum@usask.ca>Joel Sherrill2001-09-271-2/+0
| | | | | | | * hared/bootcard.c: Now process C++ global constructors (_init) as part of the first task execution not in BSP space. This depends on the toolset defining USE_INIT_FINI so you have to have the right toolset version.
* Removed warnings.Joel Sherrill1999-12-131-0/+4
|
* Updated copyright notice.Joel Sherrill1999-11-171-2/+1
|
* Modified to setup environment pointer on all BSPs. This resultsJoel Sherrill1999-10-041-4/+20
| | | | | in getenv/putenv working all the time without special assistance from the BSP.
* Now correctly does deep copy.Joel Sherrill1999-08-021-2/+2
|
* Corrected typo and added correct conditional compilation on RTEMS_POSIX_API.Joel Sherrill1999-07-301-1/+15
|
* Patch from Charles-Antoine Gauthier <charles.gauthier@iit.nrc.ca>.Joel Sherrill1999-07-261-1/+1
| | | | | | | | | | | | | | | | | | | to address m68k-rtemself for the MVME167. Here is the rtems patch I promissed you a long time ago to enable ELF with m68k. The target name I selected is m68k-rtemself. It preserves the m68k-rtems COFF target, and is parterned after the other ELF/COFF dual targets. The mvme167.cfg file causes the -qelf flag to be used during compilation if the name of the compiler contains rtemself. This flag is used in the bsp_specs file to select the elflinkcmds file rather than the linkcmds file. The former is for ELF, the latter for COFF. Some patches are required to the mc68040 FPSP code. Some of the assembler files contain instructions that were rejected by the m68k-rtemself-as assembler. This is a minor bug in the m68k ELF assembler, I think.
* Patch from Rosimildo DaSilva <rdasilva@connecttel.com> to readd calls toJoel Sherrill1999-07-131-0/+10
| | | | init() and fini() routines.
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> that splitsJoel Sherrill1999-07-021-0/+96
boot_card() and main() into separate files to ease configuration of other packages. This was a big step in the way to build TCL, ncurses, and zlib for RTEMS.