Changeset b1a2ae92 in rtems
- Timestamp:
- May 24, 2001, 8:03:27 PM (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e86adc7
- Parents:
- 6b5a85ae
- Location:
- c/src/lib/libbsp/powerpc/dmv177
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/dmv177/ChangeLog
r6b5a85ae rb1a2ae92 1 2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 2001-05-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: Add bspopts.h, AC_DEFINE CONSOLE_USE_INTERRUPTS, 4 CONSOLE_USE_POLLED, HAS_RTC. 5 * include/.cvsignore: Add bspopts.h*, stamp-h*, coverhd.h, tod.h. 6 * include/Makefile.am: Use *_HEADERS instead of *H_FILES, New 7 treatment of tod.h, coverhd.h. 8 * include/bsp.h: Add include bspopts.h. 9 10 2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 11 3 12 * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]). -
c/src/lib/libbsp/powerpc/dmv177/configure.in
r6b5a85ae rb1a2ae92 24 24 AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes") 25 25 26 ## bsp-specific options 27 CONSOLE_USE_INTERRUPTS=${CONSOLE_USE_INTERRUPTS-0} 28 AC_DEFINE_UNQUOTED([CONSOLE_USE_INTERRUPTS], 29 [$CONSOLE_USE_INTERRUPTS], 30 [whether using console interrupts]) 31 32 ## FIXME: this is redundant to CONSOLE_USE_INTERRUPTS 33 CONSOLE_USE_POLLED="!CONSOLE_USE_INTERRUPTS" 34 AC_DEFINE_UNQUOTED([CONSOLE_USE_POLLED], 35 [$CONSOLE_USE_POLLED], 36 [whether using polled console]) 37 38 ## FIXME: This is not used anywhere 39 HAS_RTC=${HAS_RTC-yes} 40 AC_DEFINE_UNQUOTED([HAS_RTC], 41 [$HAS_RTC], 42 [whether this BSP has an RTC]) 43 44 AM_CONFIG_HEADER(include/bspopts.h) 26 45 RTEMS_PROJECT_ROOT 27 46 -
c/src/lib/libbsp/powerpc/dmv177/include/.cvsignore
r6b5a85ae rb1a2ae92 1 1 Makefile 2 2 Makefile.in 3 coverhd.h 4 tod.h 5 bspopts.h 6 bspopts.h.in 7 stamp-h 8 stamp-h.in -
c/src/lib/libbsp/powerpc/dmv177/include/Makefile.am
r6b5a85ae rb1a2ae92 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 H_FILES = bsp.h ../../../shared/include/coverhd.h dmv170.h \ 8 ../../../shared/tod.h 7 include_HEADERS = bsp.h coverhd.h dmv170.h tod.h bspopts.h 8 9 tod.h: $(top_srcdir)/../../shared/tod.h 10 cp $< $@ 11 coverhd.h: $(top_srcdir)/../../shared/include/coverhd.h 12 cp $< $@ 13 CLEANFILES += tod.h coverhd.h 9 14 10 15 $(PROJECT_INCLUDE): 11 16 $(mkinstalldirs) $@ 12 17 13 $(PROJECT_INCLUDE)/ bsp.h: bsp.h18 $(PROJECT_INCLUDE)/%.h: %.h 14 19 $(INSTALL_DATA) $< $@ 15 20 16 $(PROJECT_INCLUDE)/coverhd.h: ../../../shared/include/coverhd.h 17 $(INSTALL_DATA) $< $@ 18 19 $(PROJECT_INCLUDE)/dmv170.h: dmv170.h 20 $(INSTALL_DATA) $< $@ 21 22 $(PROJECT_INCLUDE)/tod.h: ../../../shared/tod.h 23 $(INSTALL_DATA) $< $@ 24 25 TMPINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/bsp.h \ 26 $(PROJECT_INCLUDE)/coverhd.h $(PROJECT_INCLUDE)/dmv170.h \ 27 $(PROJECT_INCLUDE)/tod.h 21 TMPINSTALL_FILES += $(PROJECT_INCLUDE) \ 22 $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) 28 23 29 24 all-local: $(TMPINSTALL_FILES) 30 25 31 EXTRA_DIST = bsp.h dmv170.h32 33 26 include $(top_srcdir)/../../../../../../automake/local.am -
c/src/lib/libbsp/powerpc/dmv177/include/bsp.h
r6b5a85ae rb1a2ae92 20 20 extern "C" { 21 21 #endif 22 23 #include <bspopts.h> 22 24 23 25 /*
Note: See TracChangeset
for help on using the changeset viewer.