mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 06:35:57 +08:00
2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
* start/start.S: bsp_cleanup() had the same code which was executed when you returned from boot_card() to start.S. So just use the stub bsp_cleanup() implementation and remove a file. * startup/bspclean.c: Removed.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* start/start.S: bsp_cleanup() had the same code which was executed
|
||||
when you returned from boot_card() to start.S. So just use the stub
|
||||
bsp_cleanup() implementation and remove a file.
|
||||
* startup/bspclean.c: Removed.
|
||||
|
||||
2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* include/bsp.h: Eliminate tm27 items from bsp.h
|
||||
|
||||
@@ -300,7 +300,7 @@ FRAME(start,sp,0,ra)
|
||||
nop
|
||||
|
||||
# jump to the "exit" routine
|
||||
jal _sys_exit
|
||||
jal _idtsim_exit
|
||||
move a0,v0 # pass through the exit code
|
||||
|
||||
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
/* bsp_cleanup()
|
||||
*
|
||||
* This routine normally is part of start.s and usually returns
|
||||
* control to a monitor.
|
||||
*
|
||||
* INPUT: NONE
|
||||
*
|
||||
* OUTPUT: NONE
|
||||
*
|
||||
* 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 <rtems.h>
|
||||
#include <bsp.h>
|
||||
|
||||
void idtsim__exit();
|
||||
|
||||
void bsp_cleanup( void )
|
||||
{
|
||||
idtsim__exit();
|
||||
}
|
||||
Reference in New Issue
Block a user