diff --git a/src/arch/x86_64/kernel.ld b/src/arch/x86_64/kernel.ld deleted file mode 100644 index 1062ad6..0000000 --- a/src/arch/x86_64/kernel.ld +++ /dev/null @@ -1,32 +0,0 @@ -ENTRY(start) -SECTIONS -{ - . = 0x100000; - - .__mbHeader : { - mboot = .; - *(.__mbHeader) - . = ALIGN(4096); - } - - .text : { - code = .; - *(.text) - . = ALIGN(4096); - } - - .data : { - data = .; - *(.data) - *(.rodata) - . = ALIGN(4096); - } - - .bss : { - bss = .; - *(.bss) - . = ALIGN(4096); - } - - end = .; -}