2001-01-05 Joel Sherrill <joel@OARcorp.com>

* include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
	the movement of this component to libmisc.
	* wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
This commit is contained in:
Joel Sherrill
2001-01-05 13:35:32 +00:00
parent 7a0a5531ef
commit 96b2583fdd
6 changed files with 17 additions and 5 deletions

View File

@@ -1,3 +1,9 @@
2001-01-05 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
the movement of this component to libmisc.
* wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.

View File

@@ -45,7 +45,7 @@ extern "C" {
/* EDIT: To activate the sci driver, change the define below */
#if 1
#include <sh/null.h>
#include <rtems/devnull.h>
#define BSP_CONSOLE_DEVNAME "/dev/null"
#define BSP_CONSOLE_DRIVER_TABLE_ENTRY DEVNULL_DRIVER_TABLE_ENTRY
#else

View File

@@ -9,7 +9,7 @@ AUTOMAKE_OPTIONS = foreign 1.4
BSP_PIECES = startup scitab console
# pieces to pick up out of libcpu/sh/sh7032
CPU_PIECES = null clock timer sci delay score
CPU_PIECES = clock timer sci delay score
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \

View File

@@ -1,3 +1,9 @@
2001-01-05 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
the movement of this component to libmisc.
* wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.

View File

@@ -55,7 +55,7 @@ extern "C" {
#define CONFIGURE_INTERRUPT_STACK_MEMORY (4 * 1024)
#if 0
#include <sh/null.h>
#include <rtems/devnull.h>
#define BSP_CONSOLE_DEVNAME "/dev/null"
#define BSP_CONSOLE_DRIVER_TABLE_ENTRY DEVNULL_DRIVER_TABLE_ENTRY
#else

View File

@@ -8,8 +8,8 @@ AUTOMAKE_OPTIONS = foreign 1.4
BSP_PIECES = startup scitab console
# pieces to pick up out of libcpu/sh
CPU_PIECES = null clock timer sci score
# pieces to pick up out of libcpu/sh/sh7045
CPU_PIECES = clock timer sci score
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/$(piece).rel) \