source:
mainline/boot/arch/sparc64/_link.ld.in@
159776f
Last change on this file since 159776f was 5631c9c, checked in by , 6 years ago | |
---|---|
|
|
File size: 472 bytes |
Rev | Line | |
---|---|---|
[656b789] | 1 | ENTRY(start) |
2 | ||
[960f8476] | 3 | SECTIONS { |
[4872160] | 4 | . = 0x4000; |
5 | .boot : { | |
[63a045c] | 6 | loader_start = .; |
[e19d667] | 7 | *(BOOTSTRAP); |
[5631c9c] | 8 | *(.text.*); |
[f1380b7] | 9 | |
[4872160] | 10 | *(.data); /* initialized data */ |
[e19d667] | 11 | *(.rodata); |
12 | *(.rodata.*); | |
13 | *(.sdata); | |
[4872160] | 14 | *(.reginfo); |
[e19d667] | 15 | *(.sbss); |
[656b789] | 16 | *(.bss); /* uninitialized static variables */ |
17 | *(COMMON); /* global variables */ | |
[63a045c] | 18 | loader_end = .; |
19 | payload_start = .; | |
20 | *(.payload); | |
21 | payload_end = .; | |
[960f8476] | 22 | } |
[f1380b7] | 23 | |
[4872160] | 24 | /DISCARD/ : { |
25 | *(.gnu.*); | |
26 | *(.mdebug*); | |
27 | *(.pdr); | |
28 | *(.comment); | |
29 | *(.note.*); | |
30 | } | |
[960f8476] | 31 | } |
Note:
See TracBrowser
for help on using the repository browser.