aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/linker.ld
diff options
context:
space:
mode:
authorMarvin Borner2020-06-17 18:31:46 +0200
committerMarvin Borner2020-06-17 18:31:46 +0200
commiteed77bd2970a00d1394ed027ceca5b646e4671ce (patch)
treec44643d98aed2b6818f2b33417c0dea9c5853094 /src/kernel/linker.ld
parent49dfa1f4021026bf7c4d77817959c8aa24067016 (diff)
Started rewrite
Diffstat (limited to 'src/kernel/linker.ld')
-rw-r--r--src/kernel/linker.ld28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/kernel/linker.ld b/src/kernel/linker.ld
deleted file mode 100644
index a55b13f..0000000
--- a/src/kernel/linker.ld
+++ /dev/null
@@ -1,28 +0,0 @@
-ENTRY(boot)
-
-SECTIONS
-{
- . = 1M;
-
- .text BLOCK(4K) : ALIGN(4K)
- {
- text_start = .;
- *(.text)
- *(.rodata)
- }
-
- .data BLOCK(4K) : ALIGN(4K)
- {
- data_start = .;
- *(.data)
- }
-
- .bss BLOCK(4K) : ALIGN(4K)
- {
- bss_start = .;
- *(.COMMON)
- *(.bss)
- }
-
- kernel_end = .;
-} \ No newline at end of file