summaryrefslogtreecommitdiff
path: root/src/user_bootstrap/linker.ld
blob: f2c9d24d3fd40fbf33c8f24387db6e47a97adeb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
ENTRY(main)
OUTPUT_FORMAT("binary")

SECTIONS
{
	. = 2M;
	.text BLOCK(4K) : ALIGN(4K)
	{
		*(.text.startup)
		*(.text)
	}
	.rodata BLOCK(4K) : ALIGN(4K)
	{
		*(.rodata)
	}
	.data BLOCK(4K) : ALIGN(4K)
	{
		*(.data)
	}

	_initrd = .; /* is just appended onto the end of the binary */
	. += 2M;

	_bss_start = .;
	.bss BLOCK(4K) : ALIGN(4K)
	{
		*(COMMON)
		*(.bss)
	}
	_bss_end = .;
}