aboutsummaryrefslogtreecommitdiff
path: root/util/mkelfImage/kunzip_src/arch/i386/lib/kunzip.lds
diff options
context:
space:
mode:
Diffstat (limited to 'util/mkelfImage/kunzip_src/arch/i386/lib/kunzip.lds')
-rw-r--r--util/mkelfImage/kunzip_src/arch/i386/lib/kunzip.lds50
1 files changed, 0 insertions, 50 deletions
diff --git a/util/mkelfImage/kunzip_src/arch/i386/lib/kunzip.lds b/util/mkelfImage/kunzip_src/arch/i386/lib/kunzip.lds
deleted file mode 100644
index 4d95da42f5..0000000000
--- a/util/mkelfImage/kunzip_src/arch/i386/lib/kunzip.lds
+++ /dev/null
@@ -1,50 +0,0 @@
-PAGE_SIZE = 4096;
-BASIC_ALIGN = 8;
-OUTPUT_FORMAT("elf32-i386")
-ENTRY(__start)
-SECTIONS
-{
- . = PAGE_SIZE;
- _start = .;
- /*
- * First we place the code and read only data (typically const declared).
- * This get placed in rom.
- */
- .text : {
- _text = .;
- *(.text)
- _etext = .;
- _rodata = .;
- *(.rodata);
- _erodata = .;
- }
- /* Global data */
- .data : {
- _data = .;
- *(.data)
- CONSTRUCTORS
- *(.got)
- *(.sdata)
- _edata = .;
- }
-
- /* Important align _bss so bss may be zeroed with quadword access */
- . = ALIGN(BASIC_ALIGN);
- .bss : {
- _bss = .;
- *(.sbss)
- *(.scommon)
- *(.bss)
- *(COMMON)
- *(.heap)
- *(.stack)
- /* Important align _ebss so bss may be zeroed with quadword access */
- . = ALIGN(BASIC_ALIGN);
- _ebss = .;
- }
- _end = .;
-
- /DISCARD/ : {
- *(*)
- }
-}