Rev 3023 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3023 | Rev 3027 | ||
---|---|---|---|
Line -... | Line 1... | ||
- | 1 | OUTPUT_FORMAT("elf32-powerpc") |
|
- | 2 | OUTPUT_ARCH(powerpc:common) |
|
- | 3 | ENTRY(start) |
|
- | 4 | ||
- | 5 | SECTIONS { |
|
1 | .boot 0x10000000: AT (0) { |
6 | .boot 0x10000000: AT (0) { |
2 | *(BOOTSTRAP); |
7 | *(BOOTSTRAP); |
3 | *(REALMODE); |
8 | *(REALMODE); |
4 | *(.text); |
9 | *(.text); |
5 | 10 | ||
Line 9... | Line 14... | ||
9 | *(.sdata); |
14 | *(.sdata); |
10 | *(.sdata2); |
15 | *(.sdata2); |
11 | *(.sbss); |
16 | *(.sbss); |
12 | *(.bss); /* uninitialized static variables */ |
17 | *(.bss); /* uninitialized static variables */ |
13 | *(COMMON); /* global variables */ |
18 | *(COMMON); /* global variables */ |
- | 19 | [[COMPONENTS]] |
|
- | 20 | } |
|
- | 21 | } |