2009-05-25 Joel Sherrill <joel.sherrill@OARcorp.com>

* Makefile.am: Remove junk bsp_reset().
	* startup/bspreset.c: Removed.
This commit is contained in:
Joel Sherrill
2009-05-25 21:12:19 +00:00
parent ef6d53b92d
commit 8ef7f20d01
3 changed files with 6 additions and 26 deletions

View File

@@ -1,3 +1,8 @@
2009-05-25 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am: Remove junk bsp_reset().
* startup/bspreset.c: Removed.
2009-05-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* console/uart.c: Remove warning.

View File

@@ -33,7 +33,7 @@ libbsp_a_SOURCES =
libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
../../shared/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
../../shared/bsppredriverhook.c startup/bspstart.c ../../shared/bspclean.c \
startup/bspreset.c startup/memmap.c ../../shared/bootcard.c \
../../shared/bspreset.c startup/memmap.c ../../shared/bootcard.c \
../../shared/sbrk.c ../../shared/gnatinstallhandler.c
# console
libbsp_a_SOURCES += console/uart.c

View File

@@ -1,25 +0,0 @@
/*
* Cogent CSB336 Shutdown code
*
* Copyright (c) 2004 by Cogent Computer Systems
* Written by Jay Monkman <jtm@lopingdog.com>
*
* 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.h>
#include <rtems/bspIo.h>
void bsp_reset(void)
{
rtems_interrupt_level level;
rtems_interrupt_disable(level);
printk("\n\rI should reset here.\n\r");
while(1);
}