]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/mips/lasat/image/romscript.normal
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[net-next-2.6.git] / arch / mips / lasat / image / romscript.normal
CommitLineData
1f21d2bd
BM
1OUTPUT_ARCH(mips)
2
3SECTIONS
4{
5 .text :
6 {
e9cfaa9f 7 *(.text..start)
1f21d2bd
BM
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}