[coreboot] r873 - coreboot-v3/arch/x86

svn at coreboot.org svn at coreboot.org
Mon Sep 29 17:37:27 CEST 2008


Author: rminnich
Date: 2008-09-29 17:37:26 +0200 (Mon, 29 Sep 2008)
New Revision: 873

Modified:
   coreboot-v3/arch/x86/ldscript.ld
Log:
quick emergency fix for gnu tools that now have elaborate note names 
such as .note.this.that. These new note names were making builds 
unbuildable on (e.g.) fc9.

Signed-off-by: Ronald G. Minnich <rminnich at gmail.com>
Acked-by: Ronald G. Minnich <rminnich at gmail.com>



Modified: coreboot-v3/arch/x86/ldscript.ld
===================================================================
--- coreboot-v3/arch/x86/ldscript.ld	2008-09-29 14:58:56 UTC (rev 872)
+++ coreboot-v3/arch/x86/ldscript.ld	2008-09-29 15:37:26 UTC (rev 873)
@@ -44,6 +44,7 @@
 	/DISCARD/ : {
 		*(.comment)
 		*(.note)
+		*(.note.*)
 	}
 }
 





More information about the coreboot mailing list