diff options
Diffstat (limited to 'arch/mips/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/mips/kernel/vmlinux.lds.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S index bc9bae2a73f4..60bbaecde187 100644 --- a/arch/mips/kernel/vmlinux.lds.S +++ b/arch/mips/kernel/vmlinux.lds.S | |||
@@ -142,15 +142,16 @@ SECTIONS | |||
142 | *(.exitcall.exit) | 142 | *(.exitcall.exit) |
143 | 143 | ||
144 | /* ABI crap starts here */ | 144 | /* ABI crap starts here */ |
145 | *(.comment) | ||
146 | *(.MIPS.options) | 145 | *(.MIPS.options) |
147 | *(.note) | ||
148 | *(.options) | 146 | *(.options) |
149 | *(.pdr) | 147 | *(.pdr) |
150 | *(.reginfo) | 148 | *(.reginfo) |
151 | *(.mdebug*) | ||
152 | } | 149 | } |
153 | 150 | ||
151 | /* These mark the ABI of the kernel for debuggers. */ | ||
152 | .mdebug.abi32 : { KEEP(*(.mdebug.abi32)) } | ||
153 | .mdebug.abi64 : { KEEP(*(.mdebug.abi64)) } | ||
154 | |||
154 | /* This is the MIPS specific mdebug section. */ | 155 | /* This is the MIPS specific mdebug section. */ |
155 | .mdebug : { *(.mdebug) } | 156 | .mdebug : { *(.mdebug) } |
156 | 157 | ||