Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/sun4v/start.S

    ra52e2f4 rb482287  
    2828#
    2929
    30 #include <abi/asmtool.h>
    3130#include <arch/arch.h>
    3231#include <arch/stack.h>
     
    107106 *
    108107 */
    109 SYMBOL(kernel_image_start)
     108.global kernel_image_start
     109kernel_image_start:
    110110        mov BSP_FLAG, %l0
    111111        and %o0, %l0, %l7                       ! l7 <= bootstrap processor?
     
    310310
    311311.align 8
    312 SYMBOL(temp_cpu_mondo_handler)
     312.global temp_cpu_mondo_handler
     313temp_cpu_mondo_handler:
    313314
    314315        set 0x3c, %o0
     
    340341
    341342.align 8
    342 SYMBOL(physmem_base)    ! copy of the physical memory base address
     343.global physmem_base            ! copy of the physical memory base address
     344physmem_base:
    343345        .quad 0
    344346
     
    348350 * memory.
    349351 */
    350 SYMBOL(end_of_identity)
     352.global end_of_identity
     353end_of_identity:
    351354        .quad -1
    352355
    353 SYMBOL(kernel_8k_tlb_data_template)
     356.global kernel_8k_tlb_data_template
     357kernel_8k_tlb_data_template:
    354358        .quad 0
    355359
    356360/* MMU fault status areas for all CPUs */
    357361.align MMU_FSA_ALIGNMENT
    358 SYMBOL(mmu_fsas)
     362.global mmu_fsas
     363mmu_fsas:
    359364        .space (MMU_FSA_SIZE * MAX_NUM_STRANDS)
Note: See TracChangeset for help on using the changeset viewer.