source: mainline/boot/arch/ppc32/_link.ld.in@ 659ebd86

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

ppc32: add support for larger (non-barebone) images

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