Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Jan 2010 03:46:09 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r201972 - head/sys/conf
Message-ID:  <201001100346.o0A3k9a9005660@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Sun Jan 10 03:46:08 2010
New Revision: 201972
URL: http://svn.freebsd.org/changeset/base/201972

Log:
  Merge from projects/mips to head by hand:
  
  special ld script for 64-bit octeon link.

Added:
     - copied unchanged from r201971, projects/mips/sys/conf/ldscript.mips.octeon1.64
Directory Properties:
  head/sys/conf/ldscript.mips.octeon1.64   (props changed)

Copied: head/sys/conf/ldscript.mips.octeon1.64 (from r201971, projects/mips/sys/conf/ldscript.mips.octeon1.64)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/conf/ldscript.mips.octeon1.64	Sun Jan 10 03:46:08 2010	(r201972, copy of r201971, projects/mips/sys/conf/ldscript.mips.octeon1.64)
@@ -0,0 +1,61 @@
+TARGET(elf64-tradbigmips)
+OUTPUT_FORMAT("elf64-tradbigmips", "elf64-tradbigmips", "elf64-tradlittlemips")
+OUTPUT_ARCH(mips)
+ENTRY(_start)
+/*   __DYNAMIC = 0;
+PROVIDE (_DYNAMIC = 0);
+*/
+PHDRS {
+	text	PT_LOAD FLAGS ( 5 ) ;
+}
+
+SECTIONS {
+
+	.text _start : {
+	    	*(.text)
+		/*(.dynamic)*/
+		etext = .;
+		_etext = .;
+		. = ALIGN(0x2000);
+	} : text
+
+	.rodata ALIGN(0x2000) : {
+		_fdata = .;
+	    	*(.rodata)
+		. = ALIGN(32);
+	}
+	
+	.data . : {
+                _rwdata = .;
+	    	*(.data)
+		. = ALIGN(32);
+		CONSTRUCTORS;
+	}
+
+	_gp = (. + 0x8000);
+
+	.sdata . : {
+                _small_start = .;
+		*(.sdata)
+		. = ALIGN(32);
+		edata = .;
+		_edata = .;
+	}
+
+	.sbss . : {
+		__bss_start = .;
+		_fbss = .;
+		*(.sbss) *(.scommon)
+                _small_end = .;
+		. = ALIGN(32);
+	}
+
+	.bss . : {
+		*(.bss)
+		*(COMMON)
+		. = ALIGN(32);
+		_end = .;
+		end = .;
+	}
+
+}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001100346.o0A3k9a9005660>