blob: 830603d5bedddfb3551627389aee99705d83e368 (
plain) (
blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
OUTPUT_ARCH(i386)
ENTRY(boot_entry)
phys = 0x00100000;
SECTIONS
{
. = phys;
kernel_ro_start = .;
.text BLOCK(4K) : ALIGN(4K)
{
*(.text*)
}
.rodata BLOCK(4K) : ALIGN(4K)
{
*(.rodata*)
}
kernel_ro_end = .;
kernel_rw_start = .;
/* Clear after init */
.temp_clear BLOCK(4K) : ALIGN(4K)
{
kernel_temp_clear_start = .;
*(.temp_clear)
kernel_temp_clear_end = .;
. = ALIGN(4K);
}
/* Make read-only after init */
.temp_protect BLOCK(4K) : ALIGN(4K)
{
kernel_temp_protect_start = .;
*(.temp_protect)
kernel_temp_protect_end = .;
. = ALIGN(4K);
}
.data BLOCK(4K) : ALIGN(4K)
{
*(.data*)
}
.bss BLOCK(4K) : ALIGN(4K)
{
*(COMMON)
*(.bss)
}
kernel_rw_end = .;
}
|