summaryrefslogtreecommitdiff
path: root/arch/amd64/linker.ld
blob: 797dc35125cc4b52d2a0fe598be861b3ae95b218 (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
32
33
34
35
36
37
38
39
ENTRY(start)

SECTIONS {
	. = 1M;

	kernel_start = .;

	.boot BLOCK(4K) : ALIGN(4K)
	{
		*(.multiboot)
	}

	.rodata BLOCK(4K) : ALIGN(4K)
	{
		*(.rodata)
	}

	.data BLOCK(4K) : ALIGN(4K)
	{
		*(.data)
	}

	text_start = .;

	.text BLOCK(4K) : ALIGN(4K)
	{
		*(.text)
	}

	text_end = .;

	.bss BLOCK(4K) : ALIGN(4K)
	{
		*(COMMON)
		*(.bss)
	}

	kernel_end = .;
}