Rev 3027 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3027 | Rev 4134 | ||
|---|---|---|---|
| Line 1... | Line -... | ||
| 1 | OUTPUT_FORMAT("binary") |
- | |
| 2 | ENTRY(start) |
1 | ENTRY(start) |
| 3 | 2 | ||
| 4 | SECTIONS { |
3 | SECTIONS { |
| 5 | .boot 0xbfc00000: AT (0) { |
4 | .boot 0xbfc00000: AT (0) { |
| 6 | *(BOOTSTRAP); |
5 | *(BOOTSTRAP); |
| 7 | *(.text); |
6 | *(.text); |
| 8 | 7 | ||
| 9 | *(.rodata); |
8 | *(.rodata); |
| 10 | *(.rodata.*); |
9 | *(.rodata.*); |
| 11 | *(.data); /* initialized data */ |
10 | *(.data); /* initialized data */ |
| 12 | *(.sdata); |
11 | *(.sdata); |
| 13 | *(.sdata2); |
12 | *(.sdata2); |
| 14 | *(.sbss); |
13 | *(.sbss); |
| 15 | *(.scommon); |
14 | *(.scommon); |
| 16 | *(.bss); /* uninitialized static variables */ |
15 | *(.bss); /* uninitialized static variables */ |
| 17 | *(COMMON); /* global variables */ |
16 | *(COMMON); /* global variables */ |
| 18 | *(.reginfo); |
17 | *(.reginfo); |
| 19 | [[COMPONENTS]] |
18 | [[COMPONENTS]] |
| 20 | } |
19 | } |
| 21 | } |
20 | } |