delete eh_frame gunk, which hopefully will make the kernel small enough to boot.

This commit is contained in:
christos 2013-10-03 23:48:34 +00:00
parent 9d2d9e2859
commit c4e471c49f

View File

@ -1,4 +1,4 @@
/* $NetBSD: ldscript.zaurus,v 1.3 2012/01/20 15:00:27 nonaka Exp $ */
/* $NetBSD: ldscript.zaurus,v 1.4 2013/10/03 23:48:34 christos Exp $ */
OUTPUT_ARCH(arm)
ENTRY(KERNEL_BASE_phys)
@ -76,4 +76,10 @@ SECTIONS
{
KEEP(*(.note.netbsd.ident));
}
/DISCARD/ : {
*(.eh_frame_hdr)
*(.eh_frame)
*(.rel.eh_frame)
*(.rela.eh_frame)
}
}