2008-09-30 Joel Sherrill <joel.sherrill@oarcorp.com>

* Makefile.am, preinstall.am: Add timer driver stub.
This commit is contained in:
Joel Sherrill
2008-09-30 16:17:52 +00:00
parent 37ec780a87
commit a523721c99
3 changed files with 11 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2008-09-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, preinstall.am: Add timer driver stub.
2008-09-30 Sebastian Huber <sebastian.huber@embedded-brains.de> 2008-09-30 Sebastian Huber <sebastian.huber@embedded-brains.de>
* ssp/ssp.c, misc/dma.c, include/dma.h, include/ssp.h: New files. * ssp/ssp.c, misc/dma.c, include/dma.h, include/ssp.h: New files.

View File

@@ -24,6 +24,7 @@ include_HEADERS = include/bsp.h
nodist_include_HEADERS = include/bspopts.h nodist_include_HEADERS = include/bspopts.h
nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
nodist_include_HEADERS += ../../shared/include/coverhd.h
include_bsp_HEADERS = ../../shared/include/utility.h \ include_bsp_HEADERS = ../../shared/include/utility.h \
../../shared/include/irq-generic.h \ ../../shared/include/irq-generic.h \
@@ -91,6 +92,8 @@ libbsp_a_SOURCES += clock/clock-config.c \
# RTC # RTC
libbsp_a_SOURCES += ../../shared/tod.c \ libbsp_a_SOURCES += ../../shared/tod.c \
rtc/rtc-config.c rtc/rtc-config.c
# Timer
libbsp_a_SOURCES += ../../shared/timerstub.c
# Misc # Misc
libbsp_a_SOURCES += misc/system-clocks.c \ libbsp_a_SOURCES += misc/system-clocks.c \

View File

@@ -49,6 +49,10 @@ $(PROJECT_INCLUDE)/bsp/bootcard.h: ../../shared/include/bootcard.h $(PROJECT_INC
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/bootcard.h $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/bootcard.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bootcard.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bootcard.h
$(PROJECT_INCLUDE)/coverhd.h: ../../shared/include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
$(PROJECT_INCLUDE)/bsp/utility.h: ../../shared/include/utility.h $(PROJECT_INCLUDE)/bsp/$(dirstamp) $(PROJECT_INCLUDE)/bsp/utility.h: ../../shared/include/utility.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/utility.h $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/utility.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/utility.h PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/utility.h