From cf2c804b34d03041a71911786420aa974ebcdfcb Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Sun, 8 Oct 2000 21:56:30 +0000 Subject: Same for 32-bit kernel. --- arch/mips/ld.script.big | 10 ++++++++++ arch/mips/ld.script.little | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/arch/mips/ld.script.big b/arch/mips/ld.script.big index 27a5bade5..21fdc39a6 100644 --- a/arch/mips/ld.script.big +++ b/arch/mips/ld.script.big @@ -15,6 +15,16 @@ SECTIONS /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) } =0 + + . = ALIGN(16); /* Exception table */ + __start___ex_table = .; + __ex_table : { *(__ex_table) } + __stop___ex_table = .; + + __start___dbe_table = .; /* Exception table for data bus errors */ + __dbe_table : { *(__ex_table) } + __stop___dbe_table = .; + _etext = .; PROVIDE (etext = .); diff --git a/arch/mips/ld.script.little b/arch/mips/ld.script.little index 48f9bc5fe..fa68f002e 100644 --- a/arch/mips/ld.script.little +++ b/arch/mips/ld.script.little @@ -15,6 +15,16 @@ SECTIONS /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) } =0 + + . = ALIGN(16); /* Exception table */ + __start___ex_table = .; + __ex_table : { *(__ex_table) } + __stop___ex_table = .; + + __start___dbe_table = .; /* Exception table for data bus errors */ + __dbe_table : { *(__ex_table) } + __stop___dbe_table = .; + _etext = .; PROVIDE (etext = .); -- cgit v1.2.3