-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathkernel.ld
executable file
·42 lines (38 loc) · 881 Bytes
/
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
/******************************************************************************
* kernel.ld
* by Alex Chadwick
*
* A linker script for generation of raspberry pi kernel images, with C
* code.
******************************************************************************/
SECTIONS {
/*
* 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 0x8000 : {
*(.init)
}
/*
* Next we put the data.
*/
.data : {
*(.data)
*.c.o(*)
}
/*
* Next we put the rest of the code.
*/
.text : {
*.c.o(.text)
*(.text)
}
/*
* Finally comes everything else. A fun trick here is to put all other
* sections into this section, which will be discarded by default.
*/
/DISCARD/ : {
*(*)
}
}