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

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

ppc32: support larger boot images

  • Property mode set to 100644
File size: 440 bytes
RevLine 
[fa024ce]1ENTRY(start)
2
[960f8476]3SECTIONS {
[c9717e3]4 . = 0x02000000;
[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.