2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>

* Makefile.am: Split out bspstart contents. Use shared stub for
	bsp_start.
	* startup/h8bdinstallirq.c: New file.
	* startup/bspstart.c: Removed.
This commit is contained in:
Joel Sherrill
2008-09-19 15:50:26 +00:00
parent ac243c5d08
commit 97c64b01e7
4 changed files with 28 additions and 37 deletions

View File

@@ -1,3 +1,10 @@
2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am: Split out bspstart contents. Use shared stub for
bsp_start.
* startup/h8bdinstallirq.c: New file.
* startup/bspstart.c: Removed.
2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h: Remove unnecessary boilerplate comments.

View File

@@ -27,7 +27,8 @@ dist_project_lib_DATA += startup/linkcmds
startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
../../shared/bspgetworkarea.c ../../shared/bsppost.c startup/bspstart.c \
../../shared/bspgetworkarea.c ../../shared/bsppost.c \
../../shared/bspstart.c startup/h8bdinstallirq.c \
../../shared/bootcard.c ../../shared/sbrk.c \
../../shared/gnatinstallhandler.c startup/__main.c
clock_SOURCES = ../../shared/clock_driver_stub.c

View File

@@ -1,36 +0,0 @@
/*
* This routine starts the application. It includes application,
* board, and monitor specific initialization and configuration.
* The generic CPU dependent initialization has been performed
* before this routine is invoked.
*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
* 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.
*
* $Id$
*/
#include <string.h>
#include <bsp.h>
/*
* bsp_start
*
* This routine does the bulk of the system initialization.
*/
void bsp_start( void )
{
}
void H8BD_Install_IRQ(
uint32_t vector,
proc_ptr new_handler,
proc_ptr *old_handler )
{ /* empty */
}

View File

@@ -0,0 +1,19 @@
/*
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* 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.
*
* $Id$
*/
#include <rtems.h>
void H8BD_Install_IRQ(
uint32_t vector,
proc_ptr new_handler,
proc_ptr *old_handler )
{ /* empty */
}