Changeset 39cb79a in mainline for arch/sparc64/_link.ld


Ignore:
Timestamp:
2005-10-29T13:37:52Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2cd0485d
Parents:
b9b103d3
Message:

sparc64 work.
Link kernel with load address 0x4000.
Add fragment of Linux image header to force SILO to always load the kernel at 0x4000.
Adjust ofw.h and ofw.c to work also on sparc64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/_link.ld

    rb9b103d3 r39cb79a  
    1212
    1313SECTIONS {
    14         .image 0x80000000: AT (0x80000000) {
     14        .image 0x4000: AT (0x4000) {
    1515                ktext_start = .;
    1616                *(K_TEXT_START)
     
    3131                LONG(kdata_end - kdata_start);
    3232                hardcoded_load_address = .;
    33                 LONG(0x80000000);
     33                LONG(0x4000);
    3434                *(.bss);                /* uninitialized static variables */   
    3535                *(COMMON);              /* global variables */
Note: See TracChangeset for help on using the changeset viewer.