Changeset 0e4dd7b in mainline for arch/sparc64/_link.ld.in


Ignore:
Timestamp:
2006-02-17T16:49:52Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c1e43e4
Parents:
37c8975
Message:

sparc64 work.
Relocate kernel to 4M.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/_link.ld.in

    r37c8975 r0e4dd7b  
    88
    99#define __ASM__
     10#include <arch/boot/boot.h>
    1011
    1112ENTRY(kernel_image_start)
    1213
    1314SECTIONS {
    14         .image 0x4000: AT (0x4000) {
     15        .image VMA: AT (LMA) {
    1516                ktext_start = .;
    1617                *(K_TEXT_START)
     
    3132                QUAD(kdata_end - kdata_start);
    3233                hardcoded_load_address = .;
    33                 QUAD(0x4000);
     34                QUAD(VMA);
    3435                *(.bss);                /* uninitialized static variables */   
    3536                *(COMMON);              /* global variables */
Note: See TracChangeset for help on using the changeset viewer.