1OUTPUT_ARCH(mips)
2ENTRY(entry)
3SECTIONS
4{
5  /* Read-only sections, merged into text segment: */
6  . = @LOADADDR@;
7  .text      :
8  {
9    _ftext = . ;
10    *(.text.entry)
11    *(.text)
12    lzma_start = .;
13    kernel.o
14    lzma_end = .;
15    *(.rodata)
16  } =0
17
18  .reginfo : { *(.reginfo) }
19
20  .bss       :
21  {
22   *(.bss)
23  }
24}
25