From 95cd78840f0891e60f5ebecc8a8eb4fbaf3c2ebf Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sun, 12 Jan 2025 01:17:36 -0600 Subject: PROJECT RESTRUCTURING Move the entire kernel into its own directory. Create new directories for system commands, libraries and other required essentials for a complete Unix-like operating system. Signed-off-by: Danny Holman --- arch/i386/linker.ld | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 arch/i386/linker.ld (limited to 'arch/i386/linker.ld') diff --git a/arch/i386/linker.ld b/arch/i386/linker.ld deleted file mode 100644 index 734310f..0000000 --- a/arch/i386/linker.ld +++ /dev/null @@ -1,30 +0,0 @@ -ENTRY(_start) - -SECTIONS { - . = 0x00100000; - _kernel_start = .; - .multiboot.data : { - *(.multiboot.data) - } - .multiboot.text : { - *(.multiboot.text) - } - - . += 0xC0000000; - .text ALIGN(4K) : AT(ADDR(.text) - 0xC0000000) { - *(.text) - } - .rodata ALIGN(4K) : AT(ADDR(.rodata) - 0xC0000000) { - *(.rodata) - } - .data ALIGN(4K) : AT(ADDR(.data) - 0xC0000000) { - *(.data) - } - .bss ALIGN(4K) : AT(ADDR(.bss) - 0xC0000000) { - *(COMMON) - *(.bss) - *(.bootstrap_stack) - } - - _kernel_end = .; -} -- cgit v1.2.3