aboutsummaryrefslogtreecommitdiff
path: root/util/mkelfImage/linux-i386/convert.lds
diff options
context:
space:
mode:
Diffstat (limited to 'util/mkelfImage/linux-i386/convert.lds')
-rw-r--r--util/mkelfImage/linux-i386/convert.lds36
1 files changed, 0 insertions, 36 deletions
diff --git a/util/mkelfImage/linux-i386/convert.lds b/util/mkelfImage/linux-i386/convert.lds
deleted file mode 100644
index 59cd714aa6..0000000000
--- a/util/mkelfImage/linux-i386/convert.lds
+++ /dev/null
@@ -1,36 +0,0 @@
-OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
-OUTPUT_ARCH(i386)
-
-
-ENTRY(startup_32)
-SECTIONS
-{
- . = 0x10000;
- _text = .; /* Text and read-only data */
- .text . : {
- *(.text)
- *(.text.*)
- } = 0x9090
- .rodata (.): {
- *(.rodata)
- *(.rodata.*)
- }
- _etext = .; /* End of text section */
- .data (.): { /* Data */
- *(.data)
- *(.data.*)
- *(.trailer)
- }
- _edata = .; /* End of data section */
- _bss = .; /* BSS */
- .bss (.): {
- *(.bss)
- }
- _end = . ;
- bss_sizex = _end - _bss;
-
- /DISCARD/ : {
- *(.comment)
- *(.note)
- }
-}