Author: imp
Date: Sun Jan 10 04:48:26 2010
New Revision: 201974
URL: http://svn.freebsd.org/changeset/base/201974

Log:
  Merge from projects/mips to head by hand:
  
  Special linker file for octeon1 in pseudo-32-bit mode.

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

Copied: head/sys/conf/ldscript.mips.octeon1.32 (from r201973, 
projects/mips/sys/conf/ldscript.mips.octeon1.32)
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/conf/ldscript.mips.octeon1.32      Sun Jan 10 04:48:26 2010        
(r201974, copy of r201973, projects/mips/sys/conf/ldscript.mips.octeon1.32)
@@ -0,0 +1,58 @@
+/*
+ *    This product includes software developed by the University of
+ *    California, Berkeley and its contributors."
+*/
+OUTPUT_FORMAT("elf32-tradbigmips", "elf32-tradbigmips", "elf32-tradlittlemips")
+OUTPUT_ARCH(mips)
+ENTRY(_start)
+
+SECTIONS {
+       . = KERNLOADADDR + SIZEOF_HEADERS;
+       .text . : {
+               *(.text)
+               *(.dynamic)
+               etext = .;
+               _etext = .;
+               . = ALIGN(0x2000);
+       }
+
+       .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 = .;
+       }
+
+}
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to