Changeset ef39005 in rtems
- Timestamp:
- 08/08/02 16:41:46 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 52270c07
- Parents:
- c23386a
- Location:
- c/src/lib/libbsp/m68k/ods68302
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/ods68302/ChangeLog
rc23386a ref39005 1 2002-08-07 Joel Sherrill <joel@OARcorp.com> 2 3 * start/Makefile.am: Pick up rest of Ralf'f changes and use 4 cp not make-rel since there is no point in this case. 5 * start/debugreset.S: Rights were not assigned. 6 * start/reset.S: Add ifdef to avoid core dump until Chris can 7 track it down. 8 * start/cpuboot.c: Moved to startup. 9 * startup/Makefile.am: Account for above. 10 1 11 2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 12 -
c/src/lib/libbsp/m68k/ods68302/start/Makefile.am
rc23386a ref39005 3 3 ## 4 4 5 RESET_S_FILES_yes_V = debugreset.S 6 RESET_S_FILES_no_V = reset.S 7 RESET_S_FILES__V = $(RESET_S_FILES_no_V) 8 RESET_S_FILES = $(RESET_S_FILES_$(RTEMS_DEBUGGER)_V) 9 10 CFLAGS_no_V = -DGDB_MONITOR_ACTIVE 11 CFLAGS__V = $(CFLAGS_no_V) 12 CFLAGS_V = $(CFLAGS_$(RTEMS_DEBUGGER)_V) 13 14 C_FILES = cpuboot.c 15 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 5 # FIXME: Better merge both files into one and use #ifdef GDB_MONITOR_ACTIVE 6 if ODS68302_DEBUG 7 RESET_S_FILES = debugreset.S 8 else 9 RESET_S_FILES = reset.S 10 endif 16 11 17 12 S_FILES = $(RESET_S_FILES) … … 33 28 34 29 $(ARCH)/start.o: $(OBJS) 35 $(make-rel)30 cp $(S_O_FILES) $(ARCH)/start.o 36 31 37 32 $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o: $(ARCH)/start.o -
c/src/lib/libbsp/m68k/ods68302/start/debugreset.S
rc23386a ref39005 19 19 * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994. 20 20 * On-Line Applications Research Corporation (OAR). 21 * All rights assigned to U.S. Government, 1994.22 21 * 23 22 * This material may be reproduced by or for the U.S. Government pursuant -
c/src/lib/libbsp/m68k/ods68302/start/reset.S
rc23386a ref39005 19 19 * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994. 20 20 * On-Line Applications Research Corporation (OAR). 21 * All rights assigned to U.S. Government, 1994.22 21 * 23 22 * This material may be reproduced by or for the U.S. Government pursuant … … 495 494 496 495 EXCEPTION_HANDLER(#, 0) 496 #if 0 497 497 EXCEPTION_HANDLER(#, 1) 498 498 EXCEPTION_HANDLER(#, 2) … … 776 776 EXCEPTION_HANDLER(#, 255) 777 777 778 #endif 779 780 778 781 779 782 common_exception_handler: 780 783 784 #if 0 781 785 | 782 786 | Need to put the format/vector above the PC and status register … … 840 844 | 841 845 846 #endif 842 847 .sect .vtable 843 848 -
c/src/lib/libbsp/m68k/ods68302/startup/Makefile.am
rc23386a ref39005 8 8 PGM = $(ARCH)/startup.rel 9 9 10 C_FILES = crc.c debugport.c gdb-hooks.c bootcard.c main.c m68302scc.c \ 11 m68k-stub.c m68kpretaskinghook.c memcheck.c trace.c gnatinstallhandler.c \ 12 bsplibc.c bsppost.c bspstart.c bspclean.c sbrk.c setvec.c 10 C_FILES = cpuboot.c crc.c debugport.c gdb-hooks.c bootcard.c main.c \ 11 m68302scc.c m68k-stub.c m68kpretaskinghook.c memcheck.c trace.c \ 12 gnatinstallhandler.c bsplibc.c bsppost.c bspstart.c bspclean.c sbrk.c \ 13 setvec.c 13 14 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 14 15
Note: See TracChangeset
for help on using the changeset viewer.