aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/lasat/image/romscript.normal
blob: ca22336f6c36db3bf58bfc40f54f8e2effe739ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
OUTPUT_ARCH(mips)

SECTIONS
{
  .text :
  {
    *(.text.start)
  }

  /* Data in ROM */

  .data ALIGN(0x10) :
  {
    *(.data)
  }
  _image_start = ADDR(.data);
  _image_size = SIZEOF(.data);

  .other : {
  	*(.*)
  }
}