Rev 2787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2787 | Rev 3011 | ||
|---|---|---|---|
| Line 5... | Line 5... | ||
| 5 | text PT_LOAD FLAGS(5); |
5 | text PT_LOAD FLAGS(5); |
| 6 | data PT_LOAD FLAGS(6); |
6 | data PT_LOAD FLAGS(6); |
| 7 | } |
7 | } |
| 8 | 8 | ||
| 9 | SECTIONS { |
9 | SECTIONS { |
| 10 | . = 0x4000; |
10 | . = 0x4000 + SIZEOF_HEADERS; |
| 11 | 11 | ||
| 12 | .init ALIGN(0x4000) : SUBALIGN(0x4000) { |
12 | .init : { |
| 13 | *(.init); |
13 | *(.init); |
| 14 | } :text |
14 | } :text |
| 15 | .text : { |
15 | .text : { |
| 16 | *(.text); |
16 | *(.text); |
| 17 | *(.rodata*); |
17 | *(.rodata*); |
| 18 | } :text |
18 | } :text |
| 19 | 19 | ||
| 20 | .got ALIGN(0x4000) : SUBALIGN(0x4000) { |
20 | . = . + 0x4000; |
| - | 21 | ||
| - | 22 | .got : { |
|
| 21 | _gp = .; |
23 | _gp = .; |
| 22 | *(.got*); |
24 | *(.got*); |
| 23 | } :data |
25 | } :data |
| 24 | .data ALIGN(0x4000) : SUBALIGN(0x4000) { |
26 | .data : { |
| 25 | *(.data); |
27 | *(.data); |
| 26 | *(.sdata); |
28 | *(.sdata); |
| 27 | } :data |
29 | } :data |
| 28 | .tdata : { |
30 | .tdata : { |
| 29 | _tdata_start = .; |
31 | _tdata_start = .; |