mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-09 06:22:54 +00:00
d9a42c5436
SVN-Revision: 23900
25 lines
322 B
Plaintext
25 lines
322 B
Plaintext
OUTPUT_ARCH(mips)
|
|
ENTRY(entry)
|
|
SECTIONS
|
|
{
|
|
/* Read-only sections, merged into text segment: */
|
|
. = @LOADADDR@;
|
|
.text :
|
|
{
|
|
_ftext = . ;
|
|
*(.text.entry)
|
|
*(.text)
|
|
lzma_start = .;
|
|
kernel.o
|
|
lzma_end = .;
|
|
*(.rodata)
|
|
} =0
|
|
|
|
.reginfo : { *(.reginfo) }
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
}
|
|
}
|