PageRenderTime 24ms CodeModel.GetById 17ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/mips/lasat/image/romscript.normal

https://bitbucket.org/cresqo/cm7-p500-kernel
Unknown | 23 lines | 19 code | 4 blank | 0 comment | 0 complexity | 3370a2e0b1cb4913a4374cdb3c7711b0 MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
 1OUTPUT_ARCH(mips)
 2
 3SECTIONS
 4{
 5  .text :
 6  {
 7    *(.text..start)
 8  }
 9
10  /* Data in ROM */
11
12  .data ALIGN(0x10) :
13  {
14    *(.data)
15  }
16  _image_start = ADDR(.data);
17  _image_size = SIZEOF(.data);
18
19  .other :
20  {
21    *(.*)
22  }
23}