source:
mainline/boot/arch/mips32/_link.ld.in@
e330da6e
Last change on this file since e330da6e was 14febed9, checked in by , 13 years ago | |
---|---|
|
|
File size: 530 bytes |
Rev | Line | |
---|---|---|
[656b789] | 1 | ENTRY(start) |
2 | ||
[960f8476] | 3 | SECTIONS { |
[295732b] | 4 | #if defined(MACHINE_msim) |
[4872160] | 5 | . = 0xbfc00000; |
[295732b] | 6 | #elif defined(MACHINE_lmalta) || defined(MACHINE_bmalta) |
[14febed9] | 7 | . = 0x80103000; |
[295732b] | 8 | #endif |
[4872160] | 9 | .text : { |
[e19d667] | 10 | *(BOOTSTRAP); |
11 | *(.text); | |
[4872160] | 12 | } |
13 | .data : { | |
14 | *(.data); /* initialized data */ | |
[e19d667] | 15 | *(.rodata); |
16 | *(.rodata.*); | |
17 | *(.sdata); | |
[4872160] | 18 | *(.reginfo); |
[e19d667] | 19 | *(.sbss); |
20 | *(.scommon); | |
[656b789] | 21 | *(.bss); /* uninitialized static variables */ |
22 | *(COMMON); /* global variables */ | |
[960f8476] | 23 | [[COMPONENTS]] |
24 | } | |
[4872160] | 25 | |
26 | /DISCARD/ : { | |
27 | *(.gnu.*); | |
28 | *(.mdebug*); | |
29 | *(.pdr); | |
30 | *(.comment); | |
31 | *(.note); | |
32 | } | |
[960f8476] | 33 | } |
Note:
See TracBrowser
for help on using the repository browser.