git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
27a50201ac6f63948944c7082a9c73f00f8d1c42
[lunaix-os.git]
/
lunaix-os
/
usr
/
link-usr.ld
1
ENTRY(_start)
2
3
SECTIONS {
4
. = 0x400000;
5
6
.text : {
7
*(.text)
8
}
9
10
.data : {
11
*(.data)
12
}
13
14
.ro.data : {
15
*(.ro.data)
16
}
17
18
.bss : {
19
*(.bss)
20
}
21
}