forked from Lulkafe/xv6_rpi_port
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkernel.ld
65 lines (52 loc) · 1.27 KB
/
kernel.ld
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
56
57
58
59
60
61
62
63
64
65
/******************************************************************************
* kernel.ld
* by Alex Chadwick
*
* A linker script for generation of raspberry pi kernel images.
******************************************************************************/
SECTIONS {
/* Link the kernel at this address: "." means the current address */
/* Must be equal to KERNLINK */
. = 0x80008000;
/*
* First and formost we need the .init section, containing the code to
* be run first. We allow room for the ATAGs and stack and conform to
* the bootloader's expectation by putting this code at 0x8000.
*/
.init 0x80008000 : AT(0x8000) {
*(.init)
}
/*
* Next we put the rest of the code.
*/
.text : {
*.c.o(.text)
*(.text .stub .text.*)
}
/*
* read-only data
*/
.rodata : {
*(.rodata .rodata.*)
}
/* Adjust the address for the data segment to the next page */
. = ALIGN(0x1000);
/*
* Next we put the data.
*/
.data : {
*(.data)
*.c.o(*)
}
.bss : {
*(.bss)
}
PROVIDE(end = .);
/*
* Finally comes everything else. A fun trick here is to put all other
* sections into this section, which will be discarded by default.
*/
/DISCARD/ : {
*(.eh_frame .note.GNU-stack)
}
}