Home | History | Annotate | Download | only in ld-elf
      1 SECTIONS
      2 {
      3   .text : { *(.text) }
      4   OVERLAY 0x1000 : AT (0x4000)
      5   {
      6     .text1 {*(.text1)}
      7     .text2 {*(.text2)}
      8   }
      9   /DISCARD/ : { *(.*) }
     10 }
     11