diff options
Diffstat (limited to 'src/arch/amd64/linker.ld')
-rw-r--r-- | src/arch/amd64/linker.ld | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/arch/amd64/linker.ld b/src/arch/amd64/linker.ld deleted file mode 100644 index 4d0596c..0000000 --- a/src/arch/amd64/linker.ld +++ /dev/null @@ -1,38 +0,0 @@ -ENTRY(start) - -PHDRS { - loadable PT_LOAD FLAGS(7) ; -} - -SECTIONS { - . = 1M; - - kernel_start = .; - - .boot BLOCK(4K) : ALIGN(4K) - { - *(.multiboot) - } - - .rodata BLOCK(4K) : ALIGN(4K) - { - *(.rodata) - } - - .text BLOCK(4K) : ALIGN(4K) - { - *(.text) - } - - .bss BLOCK(4K) : ALIGN(4K) - { - *(.bss) - } - - .symtab : { - symtab = .; - *(.symtab) - } :loadable - - kernel_end = .; -} |