aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/conf/kernel-link.S
blob: 873c7dec358be16bfb8da903a3c65fa2f7c7143f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <apos/link.lds.h>
#include <vmap.h>

OUTPUT_ARCH(riscv)
ENTRY(main)

SECTIONS {
	. = ABSOLUTE(VM_KERN);
	.text ALIGN(4K) : AT(0) {
		*(.text.start);
		*(.text);
		. = ALIGN(4K);
	}
}