diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-01-04 18:05:56 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-01-04 18:05:56 +0000 |
commit | 9d507d4d4b1a39677da09aebd8b1e7fb4e348aea (patch) | |
tree | 334e5bfdab5d9e1185d26b468b4e763cce1b593f /libgloss/m68k/Makefile.in | |
parent | 0a9e977f62696470a24ec8aca12b1a4b434fa2a6 (diff) | |
download | cygnal-9d507d4d4b1a39677da09aebd8b1e7fb4e348aea.tar.gz cygnal-9d507d4d4b1a39677da09aebd8b1e7fb4e348aea.tar.bz2 cygnal-9d507d4d4b1a39677da09aebd8b1e7fb4e348aea.zip |
2007-01-04 Kazu Hirata <kazu@codesourcery.com>
Merge from newlib-csl-20060320-branch:
2006-12-22 Nathan Sidwell <nathan@codesourcery.com>
libgloss/
* m68k/Makefile.in (CF_ISRS): Remove now shared routines.
* m68k/cf-crt0.S (__reset): Define here.
* m68k/cf-isrs.c: Share some ISRS. Add aliases for each IRQ slot.
* m68k/cf-isv.S: Move to .interrupt_vector section. Make each
slot a unique routine.
* m68k/cf.sc: Adjust for .interrupt_vector section.
libgloss/
* m68k/Makefile.in (m5273c3): Rename to ...
(m5272c3): ... here to fix typo.
(m5249c3): New.
(CF_BOARDS): Add it.
Diffstat (limited to 'libgloss/m68k/Makefile.in')
-rw-r--r-- | libgloss/m68k/Makefile.in | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/libgloss/m68k/Makefile.in b/libgloss/m68k/Makefile.in index 175a67106..f1ca1c492 100644 --- a/libgloss/m68k/Makefile.in +++ b/libgloss/m68k/Makefile.in @@ -123,28 +123,25 @@ CF_CRT0S= cf-hosted-crt0.o cf-unhosted-crt0.o CF_BSP= libcf.a CF_OBJS= cf-isv.o cf-crt1.o cf-hosted.o getpid.o kill.o cf-sbrk.o \ cf-exit.o $(patsubst %,cf-%.o,${CF_ISRS}) -CF_ISRS= other_interrupt reset access_error address_error \ +CF_ISRS= other_interrupt access_error address_error \ illegal_instruction divide_by_zero privilege_violation \ - trace unimplemented_line_a_opcode unimplemented_line_f_opcode \ - non_pc_breakpoint_debug_interrupt pc_breakpoint_debug_interrupt \ - format_error spurious_interrupt fp_branch_unordered \ - fp_inexact_result fp_divide_by_zero fp_underflow fp_operand_error \ - fp_overflow fp_input_not_a_number fp_input_denormalized_number \ - unsupported_instruction \ - $(addprefix trap,0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15) + trace unimplemented_opcode breakpoint_debug_interrupt \ + format_error spurious_interrupt fp_interrupt \ + unsupported_instruction trap_interrupt # RAM ROM m5208evb := 1024M 16M 0M 2M m5213evb := 512M 32K 0M 256K m52235evb := 512M 32K 0M 256K m5235evb := 0M 16M 0xFFE00000 2M -m5273c3 := 0M 4M 0xFFE00000 2M +m5249c3 := 0M 4M 0xFFE00000 2M +m5272c3 := 0M 4M 0xFFE00000 2M m5275evb := 0M 16M 0xFFE00000 2M m5282evb := 0M 16M 0xFFE00000 2M m5329evb := 1024M 32M 0M 2M m5485evb := 0M 64M 1024M 16M -CF_BOARDS := m5208evb m5213evb m52235evb m5235evb m5272c3 m5275evb \ +CF_BOARDS := m5208evb m5213evb m52235evb m5235evb m5249c3 m5272c3 m5275evb \ m5282evb m5329evb m5485evb CF_RAM_SCRIPTS := $(patsubst %,%-ram.ld,$(CF_BOARDS)) CF_ROM_SCRIPTS := $(patsubst %,%-rom.ld,$(CF_BOARDS)) |