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

* Makefile.am: 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.
This commit is contained in:
Joel Sherrill
2008-09-10 21:33:47 +00:00
parent f497d1596e
commit c603479327
3 changed files with 8 additions and 27 deletions

View File

@@ -1,3 +1,10 @@
2008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am: 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.
2008-08-30 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, startup/bspstart.c: Use default bsp_pretasking_hook().

View File

@@ -41,7 +41,7 @@ include_bsp_HEADERS = include/mpc55xxevb.h \
../shared/include/tictac.h
startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
../../shared/bootcard.c ../shared/src/tictac.c startup/bspclean.c \
../../shared/bootcard.c ../shared/src/tictac.c ../../shared/bspclean.c \
startup/bspstart.c ../../shared/bsppretaskinghook.c
clock_SOURCES = ../shared/clock/clock.c

View File

@@ -1,26 +0,0 @@
/**
* @file
*
* @ingroup mpc55xx
*
* @brief BSP cleanup code
*/
/*
* Copyright (c) 2008
* Embedded Brains GmbH
* Obere Lagerstr. 30
* D-82178 Puchheim
* Germany
* rtems@embedded-brains.de
*
* 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.
*/
#include <bsp/bootcard.h>
void bsp_cleanup(void)
{
/* TODO - Add something BSP specific here */
}