git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
hot fix: remove outdated objcpy
[lunaix-os.git]
/
lunaix-os
/
usr
/
link-usr.ld
1
ENTRY(_start)
2
3
SECTIONS {
4
. = 0x400000;
5
6
.text BLOCK(4K) : {
7
*(.text)
8
}
9
10
.data BLOCK(4K) : {
11
*(.data)
12
}
13
14
.ro.data BLOCK(4K) : {
15
*(.ro.data)
16
}
17
18
.bss BLOCK(4K) : {
19
*(.bss)
20
}
21
}