svn commit: r217612 - head/sys/conf

Juli Mallett jmallett at FreeBSD.org
Wed Jan 19 22:15:13 UTC 2011


Author: jmallett
Date: Wed Jan 19 22:15:12 2011
New Revision: 217612
URL: http://svn.freebsd.org/changeset/base/217612

Log:
  The output format should be determined by the ABI flags, not the ldscript.
  This ldscript is used with both little-endian and big-endian targets.
  
  This hopefully fixes MIPS universe.
  
  NB: We really should get rid of almost all of the MIPS ldscripts.  There's
      only gratuitous differences between them, mostly because they're too
      specific or they do things like specify the output format rather than
      taking it from flags given in the kernel config file or the default
      output format of the compiler.
  
  Also add svn:keywords property.

Modified:
  head/sys/conf/ldscript.mips.mips64   (contents, props changed)

Modified: head/sys/conf/ldscript.mips.mips64
==============================================================================
--- head/sys/conf/ldscript.mips.mips64	Wed Jan 19 22:10:35 2011	(r217611)
+++ head/sys/conf/ldscript.mips.mips64	Wed Jan 19 22:15:12 2011	(r217612)
@@ -27,12 +27,9 @@
  * SUCH DAMAGE.
  *
  *	JNPR: ldscript.mips,v 1.3 2006/10/11 06:12:04
- * $FreeBSD: projects/mips/sys/conf/ldscript.mips 191079 2009-04-14 22:53:22Z gonzo $
+ * $FreeBSD$
  */
 
-OUTPUT_FORMAT("elf64-tradbigmips", "elf64-tradbigmips", 
-		"elf64-tradlittlemips")
-
 OUTPUT_ARCH(mips)
 ENTRY(_start)
 SEARCH_DIR(/usr/lib);


More information about the svn-src-head mailing list