Home | History | Annotate | Download | only in ld-scripts
      1 SECTIONS
      2 {
      3   . = 0x1000 + SIZEOF_HEADERS;
      4   .text ALIGN (0x20) : { *(.text) }
      5   .data 0x2000 : {
      6     *(.data)
      7     LONG (SIZEOF (.text))
      8     LONG (SIZEOF (.data))
      9   }
     10 }
     11