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 0032765..0000000 --- a/src/arch/amd64/linker.ld +++ /dev/null @@ -1,38 +0,0 @@ -ENTRY(start) - -SECTIONS { - . = 1M; - - kernel_start = .; - - .boot BLOCK(4K) : ALIGN(4K) - { - *(.multiboot) - } - - .rodata BLOCK(4K) : ALIGN(4K) - { - *(.rodata) - } - - .data BLOCK(4K) : ALIGN(4K) - { - *(.data) - } - - text_start = .; - - .text BLOCK(4K) : ALIGN(4K) - { - *(.text) - } - - text_end = .; - - .bss BLOCK(4K) : ALIGN(4K) - { - *(.bss) - } - - kernel_end = .; -} |