From 31c3c8dcb5ea281201b9c01140bceeadc80f7686 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 20 Aug 2021 20:57:59 +0300 Subject: New build system --- arch/riscv/riscv-link.S | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 arch/riscv/riscv-link.S (limited to 'arch/riscv/riscv-link.S') 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 -#include - -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); - } -} -- cgit v1.3