repo.or.cz
/
wrt350n-kernel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git]
/
arch
/
m32r
/
boot
/
compressed
/
vmlinux.lds.S
blob
dd11963f6939251bd91185eca8ff637893201301
1
2
OUTPUT_ARCH(m32r)
3
ENTRY(startup)
4
SECTIONS
5
{
6
. = CONFIG_MEMORY_START + 0x00400000;
7
8
_text = .;
9
.text : { *(.text) } = 0
10
.rodata : { *(.rodata) *(.rodata.*) }
11
_etext = .;
12
13
. = ALIGN(32 / 8);
14
.data : { *(.data) }
15
. = ALIGN(32 / 8);
16
_got = .;
17
.got : { *(.got) _egot = .; *(.got.*) }
18
_edata = .;
19
20
. = ALIGN(32 / 8);
21
__bss_start = .;
22
.bss : { *(.bss) *(.sbss) }
23
. = ALIGN(32 / 8);
24
_ebss = .;
25
. = ALIGN(4096);
26
. += 4096;
27
end = . ;
28
29
got_len = (_egot - _got);
30
}