2002-09-14 Ivan Guzvinec <ivang@opencores.org>

* include/bsp.h, startup/Makefile.am, startup/bspclean.c:
	Cleanup so the BSP works.
This commit is contained in:
Joel Sherrill
2002-09-14 17:59:49 +00:00
parent 19165f5236
commit 9db34c3fd5
4 changed files with 12 additions and 4 deletions
+5
View File
@@ -1,3 +1,8 @@
2002-09-14 Ivan Guzvinec <ivang@opencores.org>
* include/bsp.h, startup/Makefile.am, startup/bspclean.c:
Cleanup so the BSP works.
2002-08-21 Joel Sherrill <joel@OARcorp.com>
* bsp_specs: Added support for -nostdlibs.
+4 -2
View File
@@ -14,13 +14,15 @@
* $Id$
*/
#ifndef __NO_BSP_h
#define __NO_BSP_h
#ifndef __ORP_h
#define __ORP_h
#ifdef __cplusplus
extern "C" {
#endif
#include <bspopts.h>
#include <rtems.h>
#include <console.h>
#include <clockdrv.h>
@@ -7,8 +7,8 @@ VPATH = @srcdir@:@srcdir@/../../../shared
PGM = $(ARCH)/startup.rel
C_FILES = bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
gnatinstallhandler.c
C_FILES = bsplibc.c bsppost.c bspstart.c bspclean.c bootcard.c main.c sbrk.c \
gnatinstallhandler.c setvec.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
S_FILES =
@@ -22,4 +22,5 @@
void bsp_cleanup( void )
{
exit(0);
}