summaryrefslogtreecommitdiffstats
path: root/sys/conf
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2011-01-20 19:09:02 +0000
committerimp <imp@FreeBSD.org>2011-01-20 19:09:02 +0000
commitf5ce255340e1daf691b1d30f31d6823b202e9567 (patch)
treeb8e0a52d8d3a7066f5e3c8e70df1345dc36eec9d /sys/conf
parentd7200f3f19ae70c6fc623456c4e7ceda8e6f631d (diff)
downloadFreeBSD-src-f5ce255340e1daf691b1d30f31d6823b202e9567.zip
FreeBSD-src-f5ce255340e1daf691b1d30f31d6823b202e9567.tar.gz
Collapse all the octeon ldscripts down into one now that we don't need one each for all the wacky ABIs
Diffstat (limited to 'sys/conf')
-rw-r--r--sys/conf/ldscript.mips.octeon1 (renamed from sys/conf/ldscript.mips.octeon1.64)3
-rw-r--r--sys/conf/ldscript.mips.octeon1.3260
-rw-r--r--sys/conf/ldscript.mips.octeon1.n3260
3 files changed, 0 insertions, 123 deletions
diff --git a/sys/conf/ldscript.mips.octeon1.64 b/sys/conf/ldscript.mips.octeon1
index ab2cef0..07b8345 100644
--- a/sys/conf/ldscript.mips.octeon1.64
+++ b/sys/conf/ldscript.mips.octeon1
@@ -1,8 +1,5 @@
/* $FreeBSD$ */
-TARGET(elf64-tradbigmips)
-OUTPUT_FORMAT("elf64-tradbigmips", "elf64-tradbigmips", "elf64-tradlittlemips")
-OUTPUT_ARCH(mips)
ENTRY(_start)
__DYNAMIC = 0;
PROVIDE (_DYNAMIC = 0);
diff --git a/sys/conf/ldscript.mips.octeon1.32 b/sys/conf/ldscript.mips.octeon1.32
deleted file mode 100644
index 3d1d91c..0000000
--- a/sys/conf/ldscript.mips.octeon1.32
+++ /dev/null
@@ -1,60 +0,0 @@
-/* $FreeBSD$ */
-
-TARGET(elf32-tradbigmips)
-OUTPUT_FORMAT("elf32-tradbigmips", "elf32-tradbigmips", "elf32-tradlittlemips")
-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 = .;
- }
-
-}
diff --git a/sys/conf/ldscript.mips.octeon1.n32 b/sys/conf/ldscript.mips.octeon1.n32
deleted file mode 100644
index 62af8b9..0000000
--- 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 = .;
- }
-
-}
OpenPOWER on IntegriCloud