Changeset 25a76ab8 in mainline for boot/arch/ppc32/_link.ld.in


Ignore:
Timestamp:
2010-05-08T07:53:23Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
051bc69a
Parents:
6c39a907 (diff), 1317380 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • boot/arch/ppc32/_link.ld.in

    r6c39a907 r25a76ab8  
    1 OUTPUT_FORMAT("elf32-powerpc")
    2 OUTPUT_ARCH(powerpc:common)
    31ENTRY(start)
    42
    53SECTIONS {
    6         .boot 0x01000000: AT (0) {
     4        . = 0x01000000;
     5        .text : {
    76                *(BOOTSTRAP);
    87                *(REALMODE);
    98                *(.text);
    10                
     9        }
     10        .data : {
     11                *(.data);       /* initialized data */
    1112                *(.rodata);
    1213                *(.rodata.*);
    13                 *(.data);       /* initialized data */
    1414                *(.sdata);
    15                 *(.sdata2);
     15                *(.reginfo);
    1616                *(.sbss);
     17                *(.scommon);
    1718                *(.bss);        /* uninitialized static variables */
    1819                *(COMMON);      /* global variables */
     
    2122       
    2223        /DISCARD/ : {
     24                *(.gnu.*);
     25                *(.mdebug*);
     26                *(.pdr);
    2327                *(.comment);
    24                 *(.note*);
     28                *(.note.*);
    2529        }
    2630}
Note: See TracChangeset for help on using the changeset viewer.