From 2397618a68d2e083b2abd33de7138f21f5a58d3f Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Tue, 3 Jan 2017 08:09:11 -0800 Subject: [PATCH] Wasn't using this linker script anymore - using GNU-EFI's instead. --- src/arch/x86_64/kernel.ld | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/arch/x86_64/kernel.ld 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 = .; -}