source: mainline/boot/arch/ppc32/_link.ld.in@ 239e32b8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 239e32b8 was 4646710, checked in by Martin Decky <martin@…>, 8 years ago

replace objcopy with mkarray.py
(objcopy is notoriously problematic due to the uncontrolable way how it generates the object files, with what flags, etc.)

  • Property mode set to 100644
File size: 443 bytes
Line 
1ENTRY(start)
2
3SECTIONS {
4 . = 0x08000000;
5 .text : {
6 *(BOOTSTRAP);
7 *(REALMODE);
8 *(.text);
9 }
10 .data : {
11 *(.data); /* initialized data */
12 *(.rodata);
13 *(.rodata.*);
14 *(.sdata);
15 *(.reginfo);
16 *(.sbss);
17 *(.scommon);
18 *(.bss); /* uninitialized static variables */
19 *(COMMON); /* global variables */
20 *(.components);
21 }
22
23 /DISCARD/ : {
24 *(.gnu.*);
25 *(.mdebug*);
26 *(.pdr);
27 *(.comment);
28 *(.note.*);
29 }
30}
Note: See TracBrowser for help on using the repository browser.