diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 16:49:42 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 16:49:42 -0400 |
commit | ef5fa4b6837e75571d8e76bd218070199d296fce (patch) | |
tree | 879b57314199532404e73e4dcaadd4e5e0fea345 /src/arch/i386/conf/e0.ld | |
parent | e698061ebaf0cf1a10c11c51a6c6cd46a331959c (diff) |
initial sources
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/arch/i386/conf/e0.ld')
-rw-r--r-- | src/arch/i386/conf/e0.ld | 46 |
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.*) - } -} |