summaryrefslogtreecommitdiff
path: root/kernel/kernel.ld
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kernel.ld')
-rw-r--r--kernel/kernel.ld39
1 files changed, 0 insertions, 39 deletions
diff --git a/kernel/kernel.ld b/kernel/kernel.ld
deleted file mode 100644
index da5c87c..0000000
--- a/kernel/kernel.ld
+++ /dev/null
@@ -1,39 +0,0 @@
-ENTRY(_start)
-
-SECTIONS
-{
- . = 1M;
-
- .boot BLOCK(4K) : ALIGN(4K)
- {
- KEEP(*(.multiboot_header))
- }
-
- .text BLOCK(4K) : ALIGN(4K)
- {
- *(.text)
- }
-
- .rodata BLOCK(4K) : ALIGN(4K)
- {
- *(.rodata)
- }
-
- .data BLOCK(4K) : ALIGN(4K)
- {
- *(.data)
- }
-
- .bss BLOCK(4K) : ALIGN(4K)
- {
- *(COMMON)
- *(.bss)
- }
-
- /DISCARD/ :
- {
- *(.comment.*)
- *(.note.*)
- *(.eh_frame)
- }
-}