aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/riscv-link.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/riscv/riscv-link.S')
-rw-r--r--arch/riscv/riscv-link.S22
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/riscv/riscv-link.S b/arch/riscv/riscv-link.S
deleted file mode 100644
index 0950850..0000000
--- a/arch/riscv/riscv-link.S
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <apos/link.lds.h>
-#include <vmap.h>
-
-OUTPUT_ARCH(riscv)
-ENTRY(_start)
-
-SECTIONS {
- . = ABSOLUTE(PM_KERN);
- .init ALIGN(4K) : AT(0) {
- *(.init.start);
- *(.init.text);
- *(.init.data);
- . = ALIGN(4K);
- }
-
- . = ABSOLUTE(VM_KERN);
- .text ALIGN(4K) : AT(SIZEOF(.init)) {
- *(.text.start);
- *(.text.text);
- *(.text.data);
- }
-}