Ignore:
File:
1 edited

Legend:

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

    rc89ae25 rcfdeedc  
    2828        .text : {
    2929                ktext_start = .;
    30                 /* FIXME: for some reason, mixing .text with .text.* produces a crash on malta-be */
    3130                *(.text);
    32                 *(.text.*);
    3331                ktext_end = .;
    3432        }
    3533        .data : {
    3634                kdata_start = .;
    37                 *(.data .data.*);                       /* initialized data */
    38                 *(.rodata .rodata.*);
    39                 *(.eh_frame .eh_frame.*);       /* stack unwinding data */
    40                 *(.eh_frame_hdr .eh_frame_hdr.*);
    41                 *(.sdata .sdata.*);
     35                *(.data);                       /* initialized data */
     36                *(.rodata*);
     37                *(.sdata);
    4238                *(.reginfo);
    43                 *(.sbss .sbss.*);
    44                 *(.scommon .scommon.*);
    45                 *(.bss .bss.*);                        /* uninitialized static variables */
     39                *(.sbss);
     40                *(.scommon);
     41                *(.bss);                        /* uninitialized static variables */
    4642                *(COMMON);                      /* global variables */
     43                . = ALIGN(8);
     44                symbol_table = .;
     45                *(symtab.*);
    4746        }
    4847        _gp = . + 0x8000;
     
    5150
    5251        kdata_end = .;
    53 
    54         .comment 0 : { *(.comment); }
    55         .debug_abbrev 0 : { *(.debug_abbrev); }
    56         .debug_abbrev.dwo 0 : { *(      .debug_abbrev.dwo); }
    57         .debug_addr 0 : { *(.debug_addr); }
    58         .debug_aranges 0 : { *(.debug_aranges); }
    59         .debug_cu_index 0 : { *(.debug_cu_index); }
    60         .debug_frame 0 : { *(.debug_frame); }
    61         .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
    62         .debug_info 0 : { *(.debug_info); }
    63         .debug_info.dwo 0 : { *(.debug_info.dwo); }
    64         .debug_line 0 : { *(.debug_line); }
    65         .debug_line.dwo 0 : { *(.debug_line.dwo); }
    66         .debug_line_str 0 : { *(.debug_line_str); }
    67         .debug_loc 0 : { *(.debug_loc); }
    68         .debug_loclists 0 : { *(.debug_loclists); }
    69         .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
    70         .debug_macinfo 0 : { *(.debug_macinfo); }
    71         .debug_macro 0 : { *(.debug_macro); }
    72         .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
    73         .debug_names 0 : { *(.debug_names); }
    74         .debug_pubnames 0 : { *(.debug_pubnames); }
    75         .debug_pubtypes 0 : { *(.debug_pubtypes); }
    76         .debug_ranges 0 : { *(.debug_ranges); }
    77         .debug_rnglists 0 : { *(.debug_rnglists); }
    78         .debug_str 0 : { *(.debug_str); }
    79         .debug_str.dwo 0 : { *(.debug_str.dwo); }
    80         .debug_str_offsets 0 : { *(.debug_str_offsets); }
    81         .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
    82         .debug_tu_index 0 : { *(.debug_tu_index); }
    83         .debug_types 0 : { *(.debug_types); }
    8452
    8553        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.