d9a42c5436
SVN-Revision: 23900
24 lines
322 B
Text
24 lines
322 B
Text
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)
|
|
}
|
|
}
|