Ignore:
File:
1 edited

Legend:

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

    rcfdeedc r6677acb  
    1515        kernel_load_address = LOAD_ADDRESS_V;
    1616
    17         .image (LOAD_ADDRESS_V + SIZEOF_HEADERS): AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) {
     17        .text (LOAD_ADDRESS_V + SIZEOF_HEADERS): AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) {
    1818                . = ALIGN(16);
    1919                ktext_start = .;
    20                 *(K_TEXT_START);
     20                KEEP(*(K_TEXT_START));
    2121                *(.text .text.*)
    2222                ktext_end = .;
     23        }
    2324
     25        /* stack unwinding data */
     26        .eh_frame_hdr : {
     27                eh_frame_hdr_start = .;
     28                *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
     29                eh_frame_hdr_end = .;
     30        }
     31
     32        .eh_frame : {
     33                eh_frame_start = .;
     34                KEEP(*(.eh_frame .eh_frame.*));
     35                eh_frame_end = .;
     36        }
     37       
     38        .data : {
    2439                kdata_start = .;
    25                 *(K_DATA_START)
    26                 *(.rodata .rodata.*)
     40                KEEP(*(K_DATA_START));
     41                *(.rodata .rodata.*);
    2742                *(.opd)
    2843                *(.data .data.*)
    2944                __gp = .;
    3045                *(.got .got.*)
    31                 *(.sdata)
    32                 *(.sbss)
    33                 *(.scommon)
    34                 *(.bss)
     46                *(.sdata .sdata.*)
     47                *(.sbss .sbss.*)
     48                *(.scommon .scommon.*)
     49                *(.bss .bss.*)
    3550                *(COMMON);
    36 
    37                 . = ALIGN(8);
    38                 symbol_table = .;
    39                 *(symtab.*);            /* Symbol table, must be LAST symbol!*/
    40 
    4151                kdata_end = .;
    4252        }
     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); }
    4384
    4485        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.