summaryrefslogtreecommitdiff
path: root/src/arch/i386
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/i386')
-rw-r--r--src/arch/i386/conf/e0.ld46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/arch/i386/conf/e0.ld b/src/arch/i386/conf/e0.ld
deleted file mode 100644
index 5b7c7fc..0000000
--- a/src/arch/i386/conf/e0.ld
+++ /dev/null
@@ -1,46 +0,0 @@
-OUTPUT_FORMAT(elf64-x86-64)
-OUTPUT_ARCH(i386:x86-64)
-ENTRY(__bsp_entry)
-
-PHDRS
-{
- text PT_LOAD FLAGS((1 << 0) | (1 << 2)) ;
- rodata PT_LOAD FLAGS((1 << 2)) ;
- data PT_LOAD FLAGS((1 << 1) | (1 << 2)) ;
-}
-
-SECTIONS
-{
- . = 0xFFFFFFFF80000000;
-
- .text : {
- *(.text .text.*)
- } :text
-
- . += CONSTANT(MAXPAGESIZE);
-
- .rodata : {
- *(.rodata .rodata.*)
- } :rodata
-
- . += CONSTANT(MAXPAGESIZE);
-
- .data : {
- *(.data)
- } :data
-
- .bss : {
- *(COMMON)
- *(.bss .bss.*)
- } :data
-
- . = ALIGN(64);
- .data.cacheline_aligned : {
- *(.data.cacheline_aligned)
- }
-
- /DISCARD/ : {
- *(.eh_frame .eh_frame.*)
- *(.note .note.*)
- }
-}