On 08/08/2013 11:36 AM, David Daney wrote:
From: David Daney <david.daney@xxxxxxxxxx> Some toolchains (including Cavimu OCTEON SDK) are emitting .eh_frame
... Obvious spelling error ^^^^^^^ I will fix it and resend.
sections by default. Discard them as they are useless in the kernel. Signed-off-by: David Daney <david.daney@xxxxxxxxxx> --- arch/mips/kernel/vmlinux.lds.S | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S index 05826d2..3b46f7c 100644 --- a/arch/mips/kernel/vmlinux.lds.S +++ b/arch/mips/kernel/vmlinux.lds.S @@ -179,5 +179,6 @@ SECTIONS *(.options) *(.pdr) *(.reginfo) + *(.eh_frame) } }