-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinker.ld
More file actions
57 lines (49 loc) · 905 Bytes
/
linker.ld
File metadata and controls
57 lines (49 loc) · 905 Bytes
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
/*
* linker.ld - Linker Script for GegOS
* Places kernel at 1MB (0x100000) for Multiboot compliance
*/
/* Entry point */
ENTRY(_start)
/* Define sections */
SECTIONS
{
/* Start at 1 MB - standard location for Multiboot kernels */
. = 1M;
/* Multiboot header must come first */
.multiboot ALIGN(4K) :
{
*(.multiboot)
}
/* Text section (code) */
.text ALIGN(4K) :
{
*(.text)
*(.text.*)
}
/* Read-only data */
.rodata ALIGN(4K) :
{
*(.rodata)
*(.rodata.*)
}
/* Initialized data */
.data ALIGN(4K) :
{
*(.data)
*(.data.*)
}
/* Uninitialized data (BSS) */
.bss ALIGN(4K) :
{
*(COMMON)
*(.bss)
*(.bss.*)
}
/* Discard unwanted sections */
/DISCARD/ :
{
*(.comment)
*(.note.*)
*(.eh_frame)
}
}