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