summaryrefslogtreecommitdiff
path: root/boot/ldscript
blob: 53a20bf2e0cfa43fb792a6f574b094445a3ae548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
OUTPUT_FORMAT(elf32-shbig-linux)
ENTRY(__start)
SECTIONS
{
	. = 0x06002f00;
	.text :
	{
		*(.text);
	}
	.data :
	{
		*(.data);
		*(.rodata);
	}
	.bss ALIGN(4) :
	{
		__bss_start = .;
		*(.bss);
		__bss_end = (. + 3) & ~ 3;
	}
}