Rev 2580 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2580 | Rev 3007 | ||
---|---|---|---|
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 | *(.data); |
23 | *(.data); |
22 | *(.sdata); |
24 | *(.sdata); |
23 | } :data |
25 | } :data |
24 | .tdata : { |
26 | .tdata : { |
25 | _tdata_start = .; |
27 | _tdata_start = .; |