Ignore:
File:
1 edited

Legend:

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

    r6677acb rc89ae25  
    2525        }
    2626
    27         .text PA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {
     27        .mapped PA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {
    2828                ktext_start = .;
    2929                KEEP(*(K_TEXT_START));
    3030                *(.text .text.*);
    3131                ktext_end = .;
    32         }
    3332
    34         /* stack unwinding data */
    35         .eh_frame_hdr : {
    36                 eh_frame_hdr_start = .;
    37                 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
    38                 eh_frame_hdr_end = .;
    39         }
    40 
    41         .eh_frame : {
    42                 eh_frame_start = .;
    43                 KEEP(*(.eh_frame .eh_frame.*));
    44                 eh_frame_end = .;
    45         }
    46 
    47         .data : {
    4833                kdata_start = .;
    4934                KEEP(*(K_DATA_START));
    5035                *(.rodata .rodata.*);
     36                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
     37                *(.eh_frame_hdr .eh_frame_hdr.*);
    5138                *(.data .data.*);       /* initialized data */
    5239                *(.sdata .sdata.*);
Note: See TracChangeset for help on using the changeset viewer.