Hi, after I updated my SuSE system, coreboot.strip grew to 4GB. Seems like they introduced some new notes sections that got in the way. Attached patch ignores them, too.
It should be trivial, but I'd rather have some confirmation. Regards, Patrick Georgi
Ignore some more sections, created by newer toolchains Signed-off-by: Patrick Georgi <[email protected]> Index: src/arch/i386/init/ldscript_fallback.lb =================================================================== --- src/arch/i386/init/ldscript_fallback.lb (Revision 3852) +++ src/arch/i386/init/ldscript_fallback.lb (Arbeitskopie) @@ -67,5 +67,7 @@ /DISCARD/ : { *(.comment) *(.note) + *(.comment.*) + *(.note.*) } } Index: src/arch/i386/init/ldscript.lb =================================================================== --- src/arch/i386/init/ldscript.lb (Revision 3852) +++ src/arch/i386/init/ldscript.lb (Arbeitskopie) @@ -62,6 +62,8 @@ /DISCARD/ : { *(.comment) + *(.comment.*) *(.note) + *(.note.*) } } Index: src/arch/i386/init/ldscript_failover.lb =================================================================== --- src/arch/i386/init/ldscript_failover.lb (Revision 3852) +++ src/arch/i386/init/ldscript_failover.lb (Arbeitskopie) @@ -52,5 +52,7 @@ /DISCARD/ : { *(.comment) *(.note) + *(.comment.*) + *(.note.*) } }
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

