summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/board/barebox.lds.S
blob: bdce8ecbd67cb5147de79b6c7931af02eab320f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <asm-generic/barebox.lds.h>

SECTIONS
{
	. = ALIGN(64);
	.barebox_initcalls : { BAREBOX_INITCALLS }

	. = ALIGN(64);
	.barebox_exitcalls : { BAREBOX_EXITCALLS }

	. = ALIGN(64);
	.barebox_magicvar : { BAREBOX_MAGICVARS }

	. = ALIGN(64);
	__barebox_cmd : { BAREBOX_CMDS }

	. = ALIGN(64);
	__barebox_ratp_cmd : { BAREBOX_RATP_CMDS }
}

INSERT BEFORE .rodata;