Changeset ef39005 in rtems


Ignore:
Timestamp:
08/08/02 16:41:46 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
52270c07
Parents:
c23386a
Message:

2002-08-07 Joel Sherrill <joel@…>

  • start/Makefile.am: Pick up rest of Ralf'f changes and use cp not make-rel since there is no point in this case.
  • start/debugreset.S: Rights were not assigned.
  • start/reset.S: Add ifdef to avoid core dump until Chris can track it down.
  • start/cpuboot.c: Moved to startup.
  • startup/Makefile.am: Account for above.
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  
     12002-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
    1112002-08-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    212
  • c/src/lib/libbsp/m68k/ods68302/start/Makefile.am

    rc23386a ref39005  
    33##
    44
    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
     6if ODS68302_DEBUG
     7RESET_S_FILES = debugreset.S
     8else
     9RESET_S_FILES = reset.S
     10endif
    1611
    1712S_FILES = $(RESET_S_FILES)
     
    3328
    3429$(ARCH)/start.o: $(OBJS)
    35         $(make-rel)
     30        cp $(S_O_FILES) $(ARCH)/start.o
    3631
    3732$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o: $(ARCH)/start.o
  • c/src/lib/libbsp/m68k/ods68302/start/debugreset.S

    rc23386a ref39005  
    1919 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
    2020 *  On-Line Applications Research Corporation (OAR).
    21  *  All rights assigned to U.S. Government, 1994.
    2221 *
    2322 *  This material may be reproduced by or for the U.S. Government pursuant
  • c/src/lib/libbsp/m68k/ods68302/start/reset.S

    rc23386a ref39005  
    1919 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
    2020 *  On-Line Applications Research Corporation (OAR).
    21  *  All rights assigned to U.S. Government, 1994.
    2221 *
    2322 *  This material may be reproduced by or for the U.S. Government pursuant
     
    495494               
    496495EXCEPTION_HANDLER(#, 0)
     496#if 0
    497497EXCEPTION_HANDLER(#, 1)
    498498EXCEPTION_HANDLER(#, 2)
     
    776776EXCEPTION_HANDLER(#, 255)                               
    777777
     778#endif
     779
     780
    778781
    779782common_exception_handler:
    780783
     784#if 0
    781785        |
    782786        | Need to put the format/vector above the PC and status register
     
    840844|
    841845
     846#endif
    842847        .sect   .vtable
    843848
  • c/src/lib/libbsp/m68k/ods68302/startup/Makefile.am

    rc23386a ref39005  
    88PGM = $(ARCH)/startup.rel
    99
    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
     10C_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
    1314C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
    1415
Note: See TracChangeset for help on using the changeset viewer.