summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/ods68302/startup (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Obsolete and remove m68k/ods68302 BSPJoel Sherrill2016-01-2310-2245/+0
| | | | closes #2544.
* Add RTEMS linker setsSebastian Huber2015-12-083-0/+6
| | | | Update #2408.
* m68k/ods68302: Fix warningsJoel Sherrill2014-10-164-39/+19
|
* 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.
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-043-1/+49
|
* bsps: Use <bsp/bootcard.h>Sebastian Huber2012-12-071-1/+1
|
* 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-119-18/+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.
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-112-28/+28
| | | | | * include/bsp.h, startup/m68k-stub.c, startup/trace.c: Use "__asm__" instead of "asm" for improved c99-compliance.
* 2010-06-22 Chris Johns <chrisj@rtems.org>Chris Johns2010-06-221-1/+1
| | | | * startup/m68k-stub.c: PR 1539. Fix buffer overrun.
* 2010-04-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-281-3/+3
| | | | * startup/m68k-stub.c: Remove warnings.
* Whitespace removal.Ralf Corsepius2009-11-291-1/+1
|
* 2009-04-28 Chris Johns <chrisj@rtems.org>Chris Johns2009-04-281-2/+2
| | | | * startup/cpuboot.c: Update for boot_card command line change.
* 2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-161-4/+4
| | | | | * Makefile.am, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
* 2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-162-52/+1
| | | | | | | | * Makefile.am, configure.ac, clock/ckinit.c, startup/linkcmds: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h. * startup/bspstart.c: Removed.
* 2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-101-25/+0
| | | | | | | | * Makefile.am, include/bsp.h: Review of all bsp_cleanup() implementations. In this phase, all prototypes were removed from bsp.h and empty implementations were removed and made to use the shared stub. * startup/bspclean.c: Removed.
* Convert to "bool".Ralf Corsepius2008-09-061-2/+2
|
* Add missing prototypes.Ralf Corsepius2008-08-191-1/+1
|
* Add missing prototypes.Ralf Corsepius2008-08-192-7/+7
|
* 2008-05-12 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-121-1/+0
| | | | | | | | | | | | * startup/bspstart.c: Refactored and renamed initialization routines to rtems_initialize_data_structures, rtems_initialize_before_drivers, rtems_initialize_device_drivers, and rtems_initialize_start_multitasking. This opened the sequence up so that bootcard() could provide a more robust and flexible framework which is easier to explain and understand. This also lays the groundwork for sharing the division of available memory between the RTEMS workspace and heap and the C library initialization across all BSPs.
* 2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-03-031-2/+2
| | | | | * startup/linkcmds: Add wildcard to gcc_except_table section so programs compiled with gcc 4.3.x can link.
* 2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-111-11/+1
| | | | | | * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies of the Configuration Table. Use the RTEMS provided accessor macros to obtain configuration fields.
* 2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-041-9/+0
| | | | | | * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
* 2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-031-2/+0
| | | | | | | | | | * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU Table fields to the Configuration Table. This included pretasking_hook, predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace, extra_mpci_receive_server_stack, stack_allocate_hook, and stack_free_hook. As a side-effect of this effort some multiprocessing code was made conditional and some style clean up occurred.
* 2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2007-11-261-5/+1
| | | | | * startup/bspstart.c: Eliminate the interrupt_vector_table field in the m68k CPU Table since it is never read.
* 2007-05-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-05-031-1/+1
| | | | * startup/linkcmds: Handle .data.* sections
* 2006-02-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-02-081-3/+3
| | | | * startup/linkcmds: Add sections required by newer gcc versions.
* 2005-01-09 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-01-091-0/+1
| | | | * startup/linkcmds: Add rom section to remove warning.
* 2004-11-25 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2004-11-261-1/+2
| | | | * startup/linkcmds: Add new bss sections .bss.* and .gnu.linkonce.b*.
* 2004-11-19 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-11-191-5/+5
| | | | | * startup/m68k-stub.c: Use (defined(__mc68020__) && !defined(__mcpu32__)) instead of defined(__mc68020__) to reflect GCC-3.4's expectations.
* Remove duplicate white lines.Ralf Corsepius2004-04-213-5/+0
|
* Remove stray white spaces.Ralf Corsepius2004-04-218-194/+194
|
* Remove stray white spaces.Ralf Corsepius2004-04-153-12/+0
|
* 2004-04-03 Ralf Corsepiu <ralf_corsepiu@rtems.org>Ralf Corsepius2004-04-034-4/+4
| | | | | | | | | | | * c/src/lib/libbsp/m68k/ods68302/clock/ckinit.c, c/src/lib/libbsp/m68k/ods68302/include/bsp.h, c/src/lib/libbsp/m68k/ods68302/startup/cpuboot.c, c/src/lib/libbsp/m68k/ods68302/startup/crc.c, c/src/lib/libbsp/m68k/ods68302/startup/gdb-hooks.c, c/src/lib/libbsp/m68k/ods68302/startup/m68302scc.c, c/src/lib/libbsp/m68k/ods68302/timer/timer.c: Include <rtems/m68k/m68302.h> instead of <m68302.h>.
* 2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-03-315-21/+21
| | | | | | | * clock/ckinit.c, include/bare.h, include/bsp.h, include/crc.h, startup/bspstart.c, startup/cpuboot.c, startup/crc.c, startup/gdb-hooks.c, startup/m68302scc.c, timer/timer.c: Convert to using c99 fixed size types.
* Remove .cvsignoreRalf Corsepius2004-01-281-2/+0
|
* 2004-01-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-281-57/+0
| | | | | | | | | | | | | * start/reset.S: Remove cat(). Add EXPAND(). Make EXCEPTION_HANDLER ANSI-C compliant. * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am start/Makefile.am, startup/Makefile.am, timer/Makefile.am wrapup/Makefile.am. Use automake compilation rules. * clock/Makefile.am, console/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove. * configure.ac: Reflect changes above.
* 2004-01-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-141-0/+5
| | | | | | | * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES. * start/Makefile.am: Ditto. * startup/Makefile.am: Ditto.
* 2003-12-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-131-12/+12
| | | | | * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g. * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
* 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-121-0/+4
| | | | | * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES. * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
* 2003-12-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-101-15/+14
| | | | | | * start/Makefile.am: Misc cleanups and fixes. * startup/Makefile.am: Misc cleanups and fixes. * wrapup/Makefile.am: Misc cleanups and fixes.
* 2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-031-1/+0
| | | | | | | | | * Makefile.am: Add preinstallation dirstamp support. * clock/Makefile.am: Cosmetics. * console/Makefile.am: Cosmetics. * startup/Makefile.am: Cosmetics. * timer/Makefile.am: Cosmetics. * wrapup/Makefile.am: Cosmetics.
* 2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-021-1/+1
| | | | | | | | | * clock/Makefile.am: Remove all-local: $(ARCH). * console/Makefile.am: Remove all-local: $(ARCH). * start/Makefile.am: Remove all-local: $(ARCH). * startup/Makefile.am: Remove all-local: $(ARCH). * timer/Makefile.am: Remove all-local: $(ARCH). * wrapup/Makefile.am: Remove all-local: $(ARCH).
* 2003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-09-042-2/+2
| | | | | | * clock/ckinit.c, console/console.c, include/bsp.h, include/coverhd.h, startup/bspclean.c, startup/bspstart.c, timer/timer.c: URL for license changed.
* 2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-161-3/+3
| | | | | | | | | | | Makefile.am: Reflect having moved automake. clock/Makefile.am: Reflect having moved automake. console/Makefile.am: Reflect having moved automake. include/Makefile.am: Reflect having moved automake. start/Makefile.am: Reflect having moved automake. startup/Makefile.am: Reflect having moved automake. timer/Makefile.am: Reflect having moved automake. wrapup/Makefile.am: Reflect having moved automake.
* 2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-111-3/+0
| | | | * startup/Makefile.am: Remove USE_INIT_FINI.
* PR264 - Stopped the core dump by removing the bad instruction.Chris Johns2003-06-232-20/+31
| | | | | | PR414 - Fixed the global interupt vector register. Linker command file to have the boot code in the first 8K. The chip select remap needed to be volatile.
* mkChangeLogList [-n]Joel Sherrill2003-01-201-0/+10
|
* 2002-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2002-12-191-1/+0
| | | | | | | | * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg. * console/Makefile.am: Don't include @RTEMS_BSP@.cfg. * start/Makefile.am: Don't include @RTEMS_BSP@.cfg. * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg. * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
* 2002-11-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2002-11-011-4/+4
| | | | * startup/m68k-stub.c: Removed typos.