Home | History | Annotate | Line # | Download | only in romboot
romboot.ldscript revision 1.1
      1 OUTPUT_ARCH(mips)
      2 ENTRY(_start)
      3 SECTIONS
      4 {
      5   .text      :
      6   {
      7     _ftext = . ;
      8     *(.text)
      9    _etext = .;
     10   }
     11 }
     12