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 | . = 0x1000; |
10 | . = 0x1000 + SIZEOF_HEADERS; |
| 11 | 11 | ||
| 12 | .init ALIGN(0x1000): SUBALIGN(0x1000) { |
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 | .data ALIGN(0x1000) : SUBALIGN(0x1000) { |
20 | . = . + 0x1000; |
| - | 21 | ||
| - | 22 | .data : { |
|
| 21 | *(.opd); |
23 | *(.opd); |
| 22 | *(.data .data.*); |
24 | *(.data .data.*); |
| 23 | *(.sdata); |
25 | *(.sdata); |
| 24 | } :data |
26 | } :data |
| 25 | .tdata : { |
27 | .tdata : { |