Ignore:
File:
1 edited

Legend:

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

    r9ded977 r1ac3a52  
    11/** AMD64 linker script
    2  *
     2 * 
    33 * umapped section:
    4  *  kernel text
    5  *  kernel data
     4 *      kernel text
     5 *      kernel data
    66 * mapped section:
    7  *  kernel text
    8  *  kernel data
     7 *      kernel text
     8 *      kernel data
    99 */
    1010
     
    1717                *(K_TEXT_START);
    1818                unmapped_ktext_end = .;
    19                
     19
    2020                unmapped_kdata_start = .;
    2121                *(K_DATA_START);
     
    2323                unmapped_kdata_end = .;
    2424        }
    25        
     25
    2626        .mapped (PA2KA(BOOT_OFFSET)+SIZEOF(.unmapped)) : AT (SIZEOF(.unmapped)) {
    2727                ktext_start = .;
    2828                *(.text);
    2929                ktext_end = .;
    30                
     30
    3131                kdata_start = .;
    32                 *(.data);       /* initialized data */
    33                 *(.rodata*);    /* string literals */
     32                *(.data);               /* initialized data */
     33                *(.rodata*);            /* string literals */
    3434                hardcoded_load_address = .;
    3535                QUAD(PA2KA(BOOT_OFFSET));
     
    4242                hardcoded_unmapped_kdata_size = .;
    4343                QUAD(unmapped_kdata_end - unmapped_kdata_start);
    44                 *(COMMON);      /* global variables */
    45                
     44                *(COMMON);              /* global variables */
     45
    4646                . = ALIGN(8);
    4747                symbol_table = .;
    48                 *(symtab.*);    /* Symbol table, must be LAST symbol!*/
    49                
    50                 *(.bss);        /* uninitialized static variables */
    51                
     48                *(symtab.*);            /* Symbol table, must be LAST symbol!*/
     49
     50                *(.bss);                /* uninitialized static variables */
     51
    5252                kdata_end = .;
    5353        }
    54        
    55 #ifdef CONFIG_LINE_DEBUG
    56         .comment 0 : { *(.comment); }
    57         .debug_abbrev 0 : { *(.debug_abbrev); }
    58         .debug_aranges 0 : { *(.debug_aranges); }
    59         .debug_info 0 : { *(.debug_info); }
    60         .debug_line 0 : { *(.debug_line); }
    61         .debug_loc 0 : { *(.debug_loc); }
    62         .debug_pubnames 0 : { *(.debug_pubnames); }
    63         .debug_pubtypes 0 : { *(.debug_pubtypes); }
    64         .debug_ranges 0 : { *(.debug_ranges); }
    65         .debug_str 0 : { *(.debug_str); }
    66 #endif
    67        
     54
    6855        /DISCARD/ : {
    6956                *(*);
    7057        }
    7158       
    72 #ifdef CONFIG_SMP
     59#ifdef CONFIG_SMP       
    7360        _hardcoded_unmapped_size = (unmapped_ktext_end - unmapped_ktext_start) + (unmapped_kdata_end - unmapped_kdata_start);
    7461        ap_boot = unmapped_ap_boot - BOOT_OFFSET + AP_BOOT_OFFSET;
    7562        ap_gdtr = unmapped_ap_gdtr - BOOT_OFFSET + AP_BOOT_OFFSET;
    7663        protected_ap_gdtr = PA2KA(ap_gdtr);
     64
    7765#endif /* CONFIG_SMP */
    78        
     66
    7967}
Note: See TracChangeset for help on using the changeset viewer.