forked from Imagelibrary/rtems
2005-05-06 Jennifer Averett <jennifer.averett@oarcorp.com>
* Makefile.am, comm/i386-stub-glue.c, comm/tty_drv.c, comm/uart.c, irq/idt.c, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: Moved irq.h and irq_asm.h to bsp subdirectory.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2005-05-06 Jennifer Averett <jennifer.averett@oarcorp.com>
|
||||||
|
|
||||||
|
* Makefile.am, comm/i386-stub-glue.c, comm/tty_drv.c, comm/uart.c,
|
||||||
|
irq/idt.c, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: Moved
|
||||||
|
irq.h and irq_asm.h to bsp subdirectory.
|
||||||
|
|
||||||
2005-05-04 Jennifer Averett <jennifer.averett@oarcorp.com>
|
2005-05-04 Jennifer Averett <jennifer.averett@oarcorp.com>
|
||||||
|
|
||||||
* pci/pcibios.c, pci/pcibios.h: Corrected spacing
|
* pci/pcibios.c, pci/pcibios.h: Corrected spacing
|
||||||
|
|||||||
@@ -13,8 +13,10 @@ EXTRA_DIST += comm/i386-stub-glue.c comm/i386-stub.c comm/uart.c \
|
|||||||
|
|
||||||
EXTRA_DIST += comm/GDB.HOWTO
|
EXTRA_DIST += comm/GDB.HOWTO
|
||||||
|
|
||||||
|
include_bspdir = $(includedir)/bsp
|
||||||
|
|
||||||
# irq
|
# irq
|
||||||
include_HEADERS += irq/irq.h irq/irq_asm.h
|
include_bsp_HEADERS = irq/irq.h irq/irq_asm.h
|
||||||
|
|
||||||
EXTRA_DIST += irq/idt.c irq/irq.c irq/irq_init.c
|
EXTRA_DIST += irq/idt.c irq/irq.c irq/irq_init.c
|
||||||
EXTRA_DIST += irq/irq_asm.S
|
EXTRA_DIST += irq/irq_asm.S
|
||||||
@@ -47,18 +49,23 @@ $(PROJECT_INCLUDE)/i386_io.h: comm/i386_io.h $(PROJECT_INCLUDE)/$(dirstamp)
|
|||||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/i386_io.h
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/i386_io.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/i386_io.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/i386_io.h
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/irq.h: irq/irq.h $(PROJECT_INCLUDE)/$(dirstamp)
|
$(PROJECT_INCLUDE)/bsp/irq.h: irq/irq.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/irq.h
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/irq.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/irq.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/irq_asm.h: irq/irq_asm.h $(PROJECT_INCLUDE)/$(dirstamp)
|
$(PROJECT_INCLUDE)/bsp/irq_asm.h: irq/irq_asm.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/irq_asm.h
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/irq_asm.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/irq_asm.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq_asm.h
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/pcibios.h: pci/pcibios.h $(PROJECT_INCLUDE)/$(dirstamp)
|
$(PROJECT_INCLUDE)/pcibios.h: pci/pcibios.h $(PROJECT_INCLUDE)/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/pcibios.h
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/pcibios.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/pcibios.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/pcibios.h
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/bsp/$(dirstamp):
|
||||||
|
@$(mkdir_p) $(PROJECT_INCLUDE)/bsp
|
||||||
|
@: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
||||||
|
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/bsp/$(dirstamp)
|
||||||
|
|
||||||
CLEANFILES = $(PREINSTALL_FILES)
|
CLEANFILES = $(PREINSTALL_FILES)
|
||||||
DISTCLEANFILES = $(PREINSTALL_DIRS)
|
DISTCLEANFILES = $(PREINSTALL_DIRS)
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
#include <rtems/system.h>
|
#include <rtems/system.h>
|
||||||
#include <rtems/score/cpu.h>
|
#include <rtems/score/cpu.h>
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
#include <irq.h>
|
#include <bsp/irq.h>
|
||||||
#include <uart.h>
|
#include <uart.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,11 @@
|
|||||||
* MODIFICATION/HISTORY:
|
* MODIFICATION/HISTORY:
|
||||||
*
|
*
|
||||||
* $Log$
|
* $Log$
|
||||||
|
* Revision 1.8 2005/05/03 14:45:12 jennifer
|
||||||
|
* 2005-05-03 Jennifer Averett <jennifer.averett@oarcorp.com>
|
||||||
|
*
|
||||||
|
* * comm/tty_drv.c: Modified to support addition of parameter to ISRs.
|
||||||
|
*
|
||||||
* Revision 1.7 2004/04/21 16:01:33 ralf
|
* Revision 1.7 2004/04/21 16:01:33 ralf
|
||||||
* Remove duplicate white lines.
|
* Remove duplicate white lines.
|
||||||
*
|
*
|
||||||
@@ -74,7 +79,7 @@
|
|||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
#include <irq.h>
|
#include <bsp/irq.h>
|
||||||
#include <rtems/libio.h>
|
#include <rtems/libio.h>
|
||||||
#include <rtems/termiostypes.h>
|
#include <rtems/termiostypes.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
#include <irq.h>
|
#include <bsp/irq.h>
|
||||||
#include <uart.h>
|
#include <uart.h>
|
||||||
#include <rtems/libio.h>
|
#include <rtems/libio.h>
|
||||||
#include <rtems/termiostypes.h>
|
#include <rtems/termiostypes.h>
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <libcpu/cpu.h>
|
#include <libcpu/cpu.h>
|
||||||
#include <irq.h>
|
#include <bsp/irq.h>
|
||||||
|
|
||||||
static rtems_raw_irq_connect_data* raw_irq_table;
|
static rtems_raw_irq_connect_data* raw_irq_table;
|
||||||
static rtems_raw_irq_connect_data default_raw_irq_entry;
|
static rtems_raw_irq_connect_data default_raw_irq_entry;
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
#include <irq.h>
|
#include <bsp/irq.h>
|
||||||
#include <rtems/score/thread.h>
|
#include <rtems/score/thread.h>
|
||||||
#include <rtems/score/apiext.h>
|
#include <rtems/score/apiext.h>
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ extern "C" {
|
|||||||
* Include some preprocessor value also used by assember code
|
* Include some preprocessor value also used by assember code
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <irq_asm.h>
|
#include <bsp/irq_asm.h>
|
||||||
#include <rtems.h>
|
#include <rtems.h>
|
||||||
/*-------------------------------------------------------------------------+
|
/*-------------------------------------------------------------------------+
|
||||||
| Constants
|
| Constants
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <rtems/asm.h>
|
#include <rtems/asm.h>
|
||||||
#include <irq_asm.h>
|
#include <bsp/irq_asm.h>
|
||||||
|
|
||||||
BEGIN_CODE
|
BEGIN_CODE
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <libcpu/cpu.h>
|
#include <libcpu/cpu.h>
|
||||||
#include <irq.h>
|
#include <bsp/irq.h>
|
||||||
#include <bsp.h>
|
#include <bsp.h>
|
||||||
#include <rtems/bspIo.h>
|
#include <rtems/bspIo.h>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user