Ignore:
File:
1 edited

Legend:

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

    rc81e5e0 r1ac3a52  
    2525        .mapped (PA2KA(BOOT_OFFSET)+SIZEOF(.unmapped)): AT (SIZEOF(.unmapped)) {
    2626                ktext_start = .;
    27                 *(.text .text.*);
     27                *(.text);
    2828                ktext_end = .;
    2929               
    3030                kdata_start = .;
    3131                *(.data);               /* initialized data */
    32                 *(.rodata .rodata.*);   /* string literals */
     32                *(.rodata*);            /* string literals */
    3333                *(COMMON);              /* global variables */
    3434                hardcoded_load_address = .;
     
    4949        }
    5050       
    51 #ifdef CONFIG_LINE_DEBUG
    52         .comment 0 : { *(.comment); }
    53         .debug_abbrev 0 : { *(.debug_abbrev); }
    54         .debug_aranges 0 : { *(.debug_aranges); }
    55         .debug_info 0 : { *(.debug_info); }
    56         .debug_line 0 : { *(.debug_line); }
    57         .debug_loc 0 : { *(.debug_loc); }
    58         .debug_pubnames 0 : { *(.debug_pubnames); }
    59         .debug_pubtypes 0 : { *(.debug_pubtypes); }
    60         .debug_ranges 0 : { *(.debug_ranges); }
    61         .debug_str 0 : { *(.debug_str); }
    62 #endif
    63        
    6451        /DISCARD/ : {
    65                 *(*);
     52                *(.note.GNU-stack);
     53                *(.comment);
    6654        }
    6755       
Note: See TracChangeset for help on using the changeset viewer.