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    *(.rodata)
13    lzma_start = .;
14    kernel.o
15    lzma_end = .;
16  } =0
17
18  .reginfo : { *(.reginfo) }
19
20  .bss       :
21  {
22   *(.bss)
23  }
24}
25