From 7ce0cd6056fe9cc583de3f9555699e274ad7ff9a Mon Sep 17 00:00:00 2001 From: trimill Date: Wed, 31 Jan 2024 21:19:22 -0500 Subject: reorganize, add sym_lookup --- src/arch/amd64/linker.ld | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/arch/amd64/linker.ld (limited to 'src/arch') 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 = .; -} -- cgit v1.2.3-freya