summaryrefslogtreecommitdiffstats
path: root/memtest_efi_modified.lds
diff options
context:
space:
mode:
Diffstat (limited to 'memtest_efi_modified.lds')
-rw-r--r--memtest_efi_modified.lds75
1 files changed, 0 insertions, 75 deletions
diff --git a/memtest_efi_modified.lds b/memtest_efi_modified.lds
deleted file mode 100644
index 6f035c8..0000000
--- a/memtest_efi_modified.lds
+++ /dev/null
@@ -1,75 +0,0 @@
-OUTPUT_FORMAT("elf64-x86-64");
-OUTPUT_ARCH(i386:x86-64);
-
-
-ENTRY(boot);
-SECTIONS {
- . = 0;
- .header : {
- *(.header)
- }
- .setup : {
- *(.setup)
- }
- . = ALIGN(512);
- .text : {
- _text_start = . ;
- _start = .;
- *(.text)
- *(.text.*)
- *(.plt)
- _etext = . ;
- _text_end = . ;
- }= 0x9090
-
- .rodata : {
- *(.rodata)
- *(.rodata.*)
- }
- .dynsym : { *(.dynsym) }
- .dynstr : { *(.dynstr) }
- .hash : { *(.hash) }
- .gnu.hash : { *(.gnu.hash) }
- .dynamic : { *(.dynamic) }
-
- .rela.text : { *(.rela.text .rela.text.*) }
- .rela.rodata : { *(.rela.rodata .rela.rodata.*) }
- .rela.data : { *(.rela.data .rela.data.*) }
- .rela.got : { *(.rela.got .rela.got.*) }
- .rela.plt : { *(.rela.plt .rela.plt.*) }
-
- . = ALIGN(4);
- .data : {
- _data = .;
- *(.data)
- *(.data.*)
- }
- .got : {
- *(.got.plt)
- *(.got)
- _edata = . ;
- }
- . = ALIGN(4);
- .bss : {
- _bss = .;
- *(.dynbss)
- *(.bss)
- *(.bss.*)
- *(COMMON)
- . = ALIGN(16);
- _stacks = .;
- *(.stacks)
- /* _end must be at least 256 byte aligned */
- . = ALIGN(256);
- _end = .;
- }
-
- .debug : {
- *(.debug*)
- }
-
- _text_size = (_text_end - _text_start);
-
- _sys_size = _text_size >> 4;
- _init_size = _text_size + _bss_size;
-}