Ignore:
File:
1 edited

Legend:

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

    rcfdeedc r6677acb  
    2828        .text : {
    2929                ktext_start = .;
     30                /* FIXME: for some reason, mixing .text with .text.* produces a crash on malta-be */
    3031                *(.text);
     32                *(.text.*);
    3133                ktext_end = .;
    3234        }
     35
     36        /* stack unwinding data */
     37        .eh_frame_hdr : {
     38                eh_frame_hdr_start = .;
     39                *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
     40                eh_frame_hdr_end = .;
     41        }
     42
     43        .eh_frame : {
     44                eh_frame_start = .;
     45                KEEP(*(.eh_frame .eh_frame.*));
     46                eh_frame_end = .;
     47        }
     48
    3349        .data : {
    3450                kdata_start = .;
    35                 *(.data);                       /* initialized data */
    36                 *(.rodata*);
    37                 *(.sdata);
     51                *(.data .data.*);                       /* initialized data */
     52                *(.rodata .rodata.*);
     53                *(.sdata .sdata.*);
    3854                *(.reginfo);
    39                 *(.sbss);
    40                 *(.scommon);
    41                 *(.bss);                        /* uninitialized static variables */
     55                *(.sbss .sbss.*);
     56                *(.scommon .scommon.*);
     57                *(.bss .bss.*);                        /* uninitialized static variables */
    4258                *(COMMON);                      /* global variables */
    43                 . = ALIGN(8);
    44                 symbol_table = .;
    45                 *(symtab.*);
    4659        }
     60
    4761        _gp = . + 0x8000;
    4862        .lit8 : { *(.lit8) }
     
    5064
    5165        kdata_end = .;
     66
     67        .comment 0 : { *(.comment); }
     68        .debug_abbrev 0 : { *(.debug_abbrev); }
     69        .debug_abbrev.dwo 0 : { *(      .debug_abbrev.dwo); }
     70        .debug_addr 0 : { *(.debug_addr); }
     71        .debug_aranges 0 : { *(.debug_aranges); }
     72        .debug_cu_index 0 : { *(.debug_cu_index); }
     73        .debug_frame 0 : { *(.debug_frame); }
     74        .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
     75        .debug_info 0 : { *(.debug_info); }
     76        .debug_info.dwo 0 : { *(.debug_info.dwo); }
     77        .debug_line 0 : { *(.debug_line); }
     78        .debug_line.dwo 0 : { *(.debug_line.dwo); }
     79        .debug_line_str 0 : { *(.debug_line_str); }
     80        .debug_loc 0 : { *(.debug_loc); }
     81        .debug_loclists 0 : { *(.debug_loclists); }
     82        .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
     83        .debug_macinfo 0 : { *(.debug_macinfo); }
     84        .debug_macro 0 : { *(.debug_macro); }
     85        .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
     86        .debug_names 0 : { *(.debug_names); }
     87        .debug_pubnames 0 : { *(.debug_pubnames); }
     88        .debug_pubtypes 0 : { *(.debug_pubtypes); }
     89        .debug_ranges 0 : { *(.debug_ranges); }
     90        .debug_rnglists 0 : { *(.debug_rnglists); }
     91        .debug_str 0 : { *(.debug_str); }
     92        .debug_str.dwo 0 : { *(.debug_str.dwo); }
     93        .debug_str_offsets 0 : { *(.debug_str_offsets); }
     94        .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
     95        .debug_tu_index 0 : { *(.debug_tu_index); }
     96        .debug_types 0 : { *(.debug_types); }
    5297
    5398        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.