From owner-svn-src-all@FreeBSD.ORG Sun Jan 10 04:49:13 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61E331065695; Sun, 10 Jan 2010 04:49:13 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 51A978FC16; Sun, 10 Jan 2010 04:49:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o0A4nDMT019523; Sun, 10 Jan 2010 04:49:13 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o0A4nDYJ019522; Sun, 10 Jan 2010 04:49:13 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201001100449.o0A4nDYJ019522@svn.freebsd.org> From: Warner Losh Date: Sun, 10 Jan 2010 04:49:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r201975 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jan 2010 04:49:13 -0000 Author: imp Date: Sun Jan 10 04:49:13 2010 New Revision: 201975 URL: http://svn.freebsd.org/changeset/base/201975 Log: Merge from projects/mips to head by hand: loader script for octeon1 in n32 abi mode. Added: - copied unchanged from r201974, projects/mips/sys/conf/ldscript.mips.octeon1.n32 Directory Properties: head/sys/conf/ldscript.mips.octeon1.n32 (props changed) Copied: head/sys/conf/ldscript.mips.octeon1.n32 (from r201974, projects/mips/sys/conf/ldscript.mips.octeon1.n32) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/conf/ldscript.mips.octeon1.n32 Sun Jan 10 04:49:13 2010 (r201975, copy of r201974, projects/mips/sys/conf/ldscript.mips.octeon1.n32) @@ -0,0 +1,57 @@ +TARGET(elf32-ntradbigmips) +OUTPUT_FORMAT("elf32-ntradbigmips", "elf32-ntradbigmips", "elf32-ntradlittlemips") +OUTPUT_ARCH(mips) +ENTRY(_start) + __DYNAMIC = 0; +PROVIDE (_DYNAMIC = 0); + +SECTIONS { + + .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 = .; + } + +}