2008-10-02 Joel Sherrill <joel.sherrill@OARcorp.com>

* Makefile.am: bsp_cleanup() was wrong. Use stub. openpic.h not needed.
	* startup/bspclean.c: Removed.
This commit is contained in:
Joel Sherrill
2008-10-02 19:48:51 +00:00
parent beff4c6d9a
commit 5d209d6abb
3 changed files with 6 additions and 18 deletions

View File

@@ -1,3 +1,8 @@
2008-10-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am: bsp_cleanup() was wrong. Use stub. openpic.h not needed.
* startup/bspclean.c: Removed.
2008-10-02 Joel Sherrill <joel.sherrill@OARcorp.com> 2008-10-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* preinstall.am: Regenerated. * preinstall.am: Regenerated.

View File

@@ -34,7 +34,7 @@ noinst_LIBRARIES += libbsp.a
libbsp_a_SOURCES = libbsp_a_SOURCES =
# startup # startup
libbsp_a_SOURCES += startup/bspclean.c ../../shared/bsplibc.c \ libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
startup/bspstart.c ../../powerpc/shared/startup/bspgetworkarea.c \ startup/bspstart.c ../../powerpc/shared/startup/bspgetworkarea.c \
../../powerpc/shared/startup/sbrk.c ../../shared/bootcard.c \ ../../powerpc/shared/startup/sbrk.c ../../shared/bootcard.c \
startup/Hwr_init.c startup/genpvec.c ../../shared/gnatinstallhandler.c \ startup/Hwr_init.c startup/genpvec.c ../../shared/gnatinstallhandler.c \
@@ -50,7 +50,6 @@ libbsp_a_SOURCES += console/85c30.c console/85c30.h console/console.c \
include_bsp_HEADERS = ../../powerpc/shared/pci/pci.h \ include_bsp_HEADERS = ../../powerpc/shared/pci/pci.h \
PCI_bus/PCI.h ../../powerpc/shared/residual/residual.h \ PCI_bus/PCI.h ../../powerpc/shared/residual/residual.h \
../../powerpc/shared/residual/pnp.h \ ../../powerpc/shared/residual/pnp.h \
../../powerpc/shared/openpic/openpic.h \
../../powerpc/shared/console/consoleIo.h \ ../../powerpc/shared/console/consoleIo.h \
../../shared/include/irq-generic.h include/irq-config.h ../../shared/include/irq-generic.h include/irq-config.h
# pci # pci

View File

@@ -1,16 +0,0 @@
/*
* 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$
*/
void bsp_cleanup( void )
{
asm volatile( "li 10,99" ); /* 0x63 */
asm volatile( "sc" );
}