projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
do not treat warnings as errors for madwifi (needed for gcc4)
[openwrt.git]
/
target
/
linux
/
image
/
aruba
/
lzma-loader
/
src
/
lzma.lds
1
OUTPUT_ARCH(mips)
2
ENTRY(_start)
3
SECTIONS
4
{
5
/* Read-only sections, merged into text segment: */
6
. = 0x81000000;
7
.text :
8
{
9
_ftext = . ;
10
*(.text)
11
*(.rodata)
12
lzma_start = .;
13
kernel.o
14
lzma_end = .;
15
} =0
16
17
.reginfo : { *(.reginfo) }
18
19
.bss :
20
{
21
*(.bss)
22
}
23
}
This page took
0.04231 seconds
and
5
git commands to generate.