2011-10-06 Gedare Bloom <giddyup44@yahoo.com>

PR 1919/bsp
	* shared/startup/bsppredriverhook.c: New file.
This commit is contained in:
Joel Sherrill
2011-10-06 16:45:12 +00:00
parent 87f92e4b33
commit b7d3a2ca33
2 changed files with 26 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-10-06 Gedare Bloom <giddyup44@yahoo.com>
PR 1919/bsp
* shared/startup/bsppredriverhook.c: New file.
2011-06-20 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Remove superfluous EXTRA_DIST.
@@ -0,0 +1,21 @@
/*
* This is a bsp_predriver_hook routine for sparc64
*
* COPYRIGHT (c) 1989-2007.
* 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 <bsp/bootcard.h>
extern void sparc64_install_isr_entries(void);
void bsp_predriver_hook( void )
{
sparc64_install_isr_entries();
}