[BACK]Return to romscript.normal CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / arch / mips / lasat / image

File: [Development] / linux-2.4-xfs / arch / mips / lasat / image / romscript.normal (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

OUTPUT_ARCH(mips)

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

  /* Data in ROM */

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

  .other : {
  	*(.*)
  }
}