diff options
Diffstat (limited to 'arch/mips/orion/ld.script.orion')
-rw-r--r-- | arch/mips/orion/ld.script.orion | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/mips/orion/ld.script.orion b/arch/mips/orion/ld.script.orion index b9f16dbbf..60cc9d3dc 100644 --- a/arch/mips/orion/ld.script.orion +++ b/arch/mips/orion/ld.script.orion @@ -17,6 +17,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 = .); |