1*56bb7041SchristosMEMORY
2*56bb7041Schristos{
3*56bb7041Schristos  text (rx) : ORIGIN = 0xffffffff10000000, LENGTH = 0x10000
4*56bb7041Schristos  data (w) : ORIGIN = 0xffffffff7fff8000, LENGTH = 0x10000
5*56bb7041Schristos}
6*56bb7041SchristosSECTIONS
7*56bb7041Schristos{
8*56bb7041Schristos  .dynamic : { *(.dynamic) } >text
9*56bb7041Schristos  .hash : { *(.hash) } >text
10*56bb7041Schristos  .dynsym : { *(.dynsym) } >text
11*56bb7041Schristos  .dynstr : { *(.dynstr) } >text
12*56bb7041Schristos  .rel.plt : { *(.rel.plt) } >text
13*56bb7041Schristos  .plt : { *(.plt) } >text
14*56bb7041Schristos  .text : { *(.text) } >text
15*56bb7041Schristos  .interp : { *(.interp) } >text
16*56bb7041Schristos  .got.plt : { *(.got.plt) } >data
17*56bb7041Schristos  .rld.map : { *(.rld.map) } >data
18*56bb7041Schristos  .got : { *(.got) } >data
19*56bb7041Schristos  .symtab : { *(.symtab) }
20*56bb7041Schristos  .strtab : { *(.strtab) }
21*56bb7041Schristos  .shstrtab : { *(.shstrtab) }
22*56bb7041Schristos  /DISCARD/ : { *(*) }
23*56bb7041Schristos}
24