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