forked from Imagelibrary/rtems
2011-02-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, preinstall.am, trap34/console-io.c: Install syscall.h as bsp/syscall.h to avoid confusing autoconf.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2011-02-01 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* Makefile.am, preinstall.am, trap34/console-io.c: Install syscall.h as
|
||||||
|
bsp/syscall.h to avoid confusing autoconf.
|
||||||
|
|
||||||
2010-04-07 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2010-04-07 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* start/start.S: Verify boot_card() is passed a NULL.
|
* start/start.S: Verify boot_card() is passed a NULL.
|
||||||
|
|||||||
@@ -7,11 +7,11 @@ ACLOCAL_AMFLAGS = -I ../../../../aclocal
|
|||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
|
|
||||||
include_bspdir = $(includedir)/bsp
|
include_bspdir = $(includedir)/bsp
|
||||||
|
include_bsp_HEADERS = include/syscall.h
|
||||||
|
|
||||||
dist_project_lib_DATA = bsp_specs
|
dist_project_lib_DATA = bsp_specs
|
||||||
|
|
||||||
include_HEADERS = include/bsp.h
|
include_HEADERS = include/bsp.h
|
||||||
include_HEADERS += include/syscall.h
|
|
||||||
include_HEADERS += ../../shared/include/tm27.h
|
include_HEADERS += ../../shared/include/tm27.h
|
||||||
|
|
||||||
nodist_include_HEADERS = include/bspopts.h
|
nodist_include_HEADERS = include/bspopts.h
|
||||||
|
|||||||
@@ -33,6 +33,10 @@ $(PROJECT_INCLUDE)/bsp/$(dirstamp):
|
|||||||
@: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
@: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
||||||
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/bsp/syscall.h: include/syscall.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
||||||
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/syscall.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/syscall.h
|
||||||
|
|
||||||
$(PROJECT_LIB)/bsp_specs: bsp_specs $(PROJECT_LIB)/$(dirstamp)
|
$(PROJECT_LIB)/bsp_specs: bsp_specs $(PROJECT_LIB)/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $(PROJECT_LIB)/bsp_specs
|
$(INSTALL_DATA) $< $(PROJECT_LIB)/bsp_specs
|
||||||
PREINSTALL_FILES += $(PROJECT_LIB)/bsp_specs
|
PREINSTALL_FILES += $(PROJECT_LIB)/bsp_specs
|
||||||
@@ -41,10 +45,6 @@ $(PROJECT_INCLUDE)/bsp.h: include/bsp.h $(PROJECT_INCLUDE)/$(dirstamp)
|
|||||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp.h
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp.h
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/syscall.h: include/syscall.h $(PROJECT_INCLUDE)/$(dirstamp)
|
|
||||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/syscall.h
|
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/syscall.h
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/tm27.h: ../../shared/include/tm27.h $(PROJECT_INCLUDE)/$(dirstamp)
|
$(PROJECT_INCLUDE)/tm27.h: ../../shared/include/tm27.h $(PROJECT_INCLUDE)/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/tm27.h
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/tm27.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/tm27.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/tm27.h
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* Logic based on newlib-1.8.2/newlib/libc/sys/sh/syscalls.c
|
* Logic based on newlib-1.8.2/newlib/libc/sys/sh/syscalls.c
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-2000.
|
* COPYRIGHT (c) 1989-2011.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#include <syscall.h>
|
#include <bsp/syscall.h>
|
||||||
|
|
||||||
int errno;
|
int errno;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user