Ignore:
File:
1 edited

Legend:

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

    rcfdeedc rc89ae25  
    2222        .unmapped (SIZEOF_HEADERS): AT (SIZEOF_HEADERS) {
    2323                . = ALIGN(0x100);
    24                 *(K_UNMAPPED_TEXT_START);
     24                KEEP(*(K_UNMAPPED_TEXT_START));
    2525        }
    2626
    2727        .mapped PA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {
    2828                ktext_start = .;
    29                 *(K_TEXT_START);
    30                 *(.text);
     29                KEEP(*(K_TEXT_START));
     30                *(.text .text.*);
    3131                ktext_end = .;
    3232
    3333                kdata_start = .;
    34                 *(K_DATA_START);
     34                KEEP(*(K_DATA_START));
    3535                *(.rodata .rodata.*);
    36                 *(.data);       /* initialized data */
    37                 *(.sdata);
    38                 *(.sdata2);
    39                 *(.sbss);
    40                 *(.bss);        /* uninitialized static variables */
     36                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
     37                *(.eh_frame_hdr .eh_frame_hdr.*);
     38                *(.data .data.*);       /* initialized data */
     39                *(.sdata .sdata.*);
     40                *(.sdata2 .sdata2.*);
     41                *(.sbss .sbss.*);
     42                *(.bss .bss.*);        /* uninitialized static variables */
    4143                *(COMMON);      /* global variables */
    42 
    43                 . = ALIGN(8);
    44                 symbol_table = .;
    45                 *(symtab.*);    /* Symbol table, must be LAST symbol!*/
    46 
    4744                kdata_end = .;
    4845        }
     46
     47        .comment 0 : { *(.comment); }
     48        .debug_abbrev 0 : { *(.debug_abbrev); }
     49        .debug_abbrev.dwo 0 : { *(      .debug_abbrev.dwo); }
     50        .debug_addr 0 : { *(.debug_addr); }
     51        .debug_aranges 0 : { *(.debug_aranges); }
     52        .debug_cu_index 0 : { *(.debug_cu_index); }
     53        .debug_frame 0 : { *(.debug_frame); }
     54        .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
     55        .debug_info 0 : { *(.debug_info); }
     56        .debug_info.dwo 0 : { *(.debug_info.dwo); }
     57        .debug_line 0 : { *(.debug_line); }
     58        .debug_line.dwo 0 : { *(.debug_line.dwo); }
     59        .debug_line_str 0 : { *(.debug_line_str); }
     60        .debug_loc 0 : { *(.debug_loc); }
     61        .debug_loclists 0 : { *(.debug_loclists); }
     62        .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
     63        .debug_macinfo 0 : { *(.debug_macinfo); }
     64        .debug_macro 0 : { *(.debug_macro); }
     65        .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
     66        .debug_names 0 : { *(.debug_names); }
     67        .debug_pubnames 0 : { *(.debug_pubnames); }
     68        .debug_pubtypes 0 : { *(.debug_pubtypes); }
     69        .debug_ranges 0 : { *(.debug_ranges); }
     70        .debug_rnglists 0 : { *(.debug_rnglists); }
     71        .debug_str 0 : { *(.debug_str); }
     72        .debug_str.dwo 0 : { *(.debug_str.dwo); }
     73        .debug_str_offsets 0 : { *(.debug_str_offsets); }
     74        .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
     75        .debug_tu_index 0 : { *(.debug_tu_index); }
     76        .debug_types 0 : { *(.debug_types); }
    4977
    5078        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.