Ignore:
File:
1 edited

Legend:

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

    rcfdeedc r6677acb  
    2626        kernel_load_address = .;
    2727        . = . + SIZEOF_HEADERS;
     28
    2829        .text : {
    2930                ktext_start = .;
    30                 *(.text);
     31                *(.text .text.*);
    3132                ktext_end = .;
    3233        }
     34
     35        /* stack unwinding data */
     36        .eh_frame_hdr : {
     37                eh_frame_hdr_start = .;
     38                *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
     39                eh_frame_hdr_end = .;
     40        }
     41
     42        .eh_frame : {
     43                eh_frame_start = .;
     44                KEEP(*(.eh_frame .eh_frame.*));
     45                eh_frame_end = .;
     46        }
     47
    3348        .data : {
    3449                kdata_start = .;
    35                 *(.data);                       /* initialized data */
    36                 *(.bss);                        /* uninitialized static variables */
     50                *(.data .data.*);                       /* initialized data */
     51                *(.bss .bss.*);                        /* uninitialized static variables */
    3752                *(COMMON);                      /* global variables */
    3853
    39                 *(.rodata*);
    40                 *(.sdata);
    41                 *(.reginfo);
    42                 . = ALIGN(8);
    43                 symbol_table = .;
    44                 *(symtab.*);
    45         }
    46         .sbss : {
    47                 *(.sbss);
    48                 *(.scommon);
     54                *(.rodata .rodata.*);
     55                *(.sdata .sdata.*);
     56                *(.sbss .sbss.*);
     57                *(.scommon .scommon.*);
     58                kdata_end = .;
    4959        }
    5060
    51         kdata_end = .;
     61        .comment 0 : { *(.comment); }
     62        .debug_abbrev 0 : { *(.debug_abbrev); }
     63        .debug_abbrev.dwo 0 : { *(      .debug_abbrev.dwo); }
     64        .debug_addr 0 : { *(.debug_addr); }
     65        .debug_aranges 0 : { *(.debug_aranges); }
     66        .debug_cu_index 0 : { *(.debug_cu_index); }
     67        .debug_frame 0 : { *(.debug_frame); }
     68        .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
     69        .debug_info 0 : { *(.debug_info); }
     70        .debug_info.dwo 0 : { *(.debug_info.dwo); }
     71        .debug_line 0 : { *(.debug_line); }
     72        .debug_line.dwo 0 : { *(.debug_line.dwo); }
     73        .debug_line_str 0 : { *(.debug_line_str); }
     74        .debug_loc 0 : { *(.debug_loc); }
     75        .debug_loclists 0 : { *(.debug_loclists); }
     76        .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
     77        .debug_macinfo 0 : { *(.debug_macinfo); }
     78        .debug_macro 0 : { *(.debug_macro); }
     79        .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
     80        .debug_names 0 : { *(.debug_names); }
     81        .debug_pubnames 0 : { *(.debug_pubnames); }
     82        .debug_pubtypes 0 : { *(.debug_pubtypes); }
     83        .debug_ranges 0 : { *(.debug_ranges); }
     84        .debug_rnglists 0 : { *(.debug_rnglists); }
     85        .debug_str 0 : { *(.debug_str); }
     86        .debug_str.dwo 0 : { *(.debug_str.dwo); }
     87        .debug_str_offsets 0 : { *(.debug_str_offsets); }
     88        .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
     89        .debug_tu_index 0 : { *(.debug_tu_index); }
     90        .debug_types 0 : { *(.debug_types); }
    5291
    5392        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.