Changeset 25a76ab8 in mainline for boot/arch/sparc64/_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/sparc64/_link.ld.in

    r6c39a907 r25a76ab8  
    22
    33SECTIONS {
    4         .boot 0xbfc00000: AT (0) {
     4        . = 0x4000;
     5        .boot : {
    56                *(BOOTSTRAP);
    67                *(.text);
    78               
     9                *(.data);       /* initialized data */
    810                *(.rodata);
    911                *(.rodata.*);
    10                 *(.data);       /* initialized data */
    1112                *(.sdata);
    12                 *(.sdata2);
     13                *(.reginfo);
    1314                *(.sbss);
    14                 *(.scommon);
    1515                *(.bss);        /* uninitialized static variables */
    1616                *(COMMON);      /* global variables */
    17                 *(.reginfo);
    1817[[COMPONENTS]]
    1918        }
     19       
     20        /DISCARD/ : {
     21                *(.gnu.*);
     22                *(.mdebug*);
     23                *(.pdr);
     24                *(.comment);
     25                *(.note.*);
     26        }
    2027}
Note: See TracChangeset for help on using the changeset viewer.