Changeset c1e43e4 in mainline


Ignore:
Timestamp:
2006-02-17T18:16:25Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f15fe51
Parents:
0e4dd7b
Message:

Improve comments in start.S.

Location:
arch/sparc64
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/include/boot/boot.h

    r0e4dd7b rc1e43e4  
    3030#define __sparc64_BOOT_H__
    3131
    32 #define BOOT_OFFSET             0x4000
    3332#define VMA                     0x400000
    34 #define LMA                     BOOT_OFFSET
     33#define LMA                     0x4000
    3534
    3635#endif
  • arch/sparc64/src/start.S

    r0e4dd7b rc1e43e4  
    3636.section K_TEXT_START, "ax"
    3737
     38/*
     39 * Here is where the kernel is passed control.
     40 * The code must be position independent until
     41 * the kernel relocates itself to its VMA.
     42 */
     43
    3844.global kernel_image_start
    3945kernel_image_start:
     
    4248        nop
    4349
    44 #
    45 # This header forces SILO to load the kernel at 0x4000.
    46 # More precisely, SILO will think this is an old version of Linux.
    47 #
     50/*
     51 * This header forces SILO to load the kernel at 0x4000.
     52 * More precisely, SILO will think this is an old version of Linux.
     53 */
    4854.ascii "HdrS"
    4955.word 0
     
    6066
    6167        set LMA, %g1                    ! source address
    62         set VMA, %g2                    ! destination address (VMA)
     68        set VMA, %g2                    ! destination address
    6369        set hardcoded_ktext_size, %g3   ! link address of hardcoded_ktext_size
    6470        set hardcoded_kdata_size, %g4   ! link address of hardcoded_kdata_size
Note: See TracChangeset for help on using the changeset viewer.