summaryrefslogtreecommitdiffstats
path: root/src/arch/riscv/include/arch/header.ld
blob: bca852c8e297a5284ae3d26c06d2d8a7f54f41c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */

/* We use ELF as output format. So that we can debug the code in some form. */
OUTPUT_ARCH(riscv)

PHDRS
{
	to_load PT_LOAD;
}

ENTRY(_start)