blob: 0864c963e188d6872385606ecaeb917d23319ccb [file] [log] [blame]
Brian Murphy1f21d2b2007-08-21 22:34:16 +02001OUTPUT_ARCH(mips)
2
3SECTIONS
4{
5 .text :
6 {
Denys Vlasenkoe9cfaa92010-02-20 01:03:57 +01007 *(.text..start)
Brian Murphy1f21d2b2007-08-21 22:34:16 +02008 }
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}