1SECTIONS
2{
3  . = SIZEOF_HEADERS;
4  . = ALIGN(__section_alignment__);
5  .text  __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
6  {
7    *(.text)
8  }
9  . = . + 0x1000;
10  .data BLOCK(__section_alignment__) :
11  {
12    *(.data)
13  }
14  /DISCARD/ : { *(.*) }
15}
16