aboutsummaryrefslogtreecommitdiff
path: root/sys/conf/ldscript.mips.octeon1.n32
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2011-01-20 19:09:02 +0000
committerWarner Losh <imp@FreeBSD.org>2011-01-20 19:09:02 +0000
commit38fed211593c14166edceb14d352da1612763f2b (patch)
treeb8e0a52d8d3a7066f5e3c8e70df1345dc36eec9d /sys/conf/ldscript.mips.octeon1.n32
parentc27d7a76fc213e5e9a987e98211bf5e52b821b28 (diff)
Collapse all the octeon ldscripts down into one now that we don't need one each for all the wacky ABIs
Notes
Notes: svn path=/head/; revision=217651
Diffstat (limited to 'sys/conf/ldscript.mips.octeon1.n32')
-rw-r--r--sys/conf/ldscript.mips.octeon1.n3260
1 files changed, 0 insertions, 60 deletions
diff --git a/sys/conf/ldscript.mips.octeon1.n32 b/sys/conf/ldscript.mips.octeon1.n32
deleted file mode 100644
index 62af8b9a2a4c..000000000000
--- a/sys/conf/ldscript.mips.octeon1.n32
+++ /dev/null
@@ -1,60 +0,0 @@
-/* $FreeBSD$ */
-
-TARGET(elf32-ntradbigmips)
-OUTPUT_FORMAT("elf32-ntradbigmips", "elf32-ntradbigmips", "elf32-ntradlittlemips")
-OUTPUT_ARCH(mips)
-ENTRY(_start)
- __DYNAMIC = 0;
-PROVIDE (_DYNAMIC = 0);
-
-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 = .;
- }
-
-}