Changeset 01cb210 in mainline for arch/ppc32/loader/_link.ld


Ignore:
Timestamp:
2006-03-16T18:55:50Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1f330de
Parents:
d89c554
Message:

relocate kernel in real mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/loader/_link.ld

    rd89c554 r01cb210  
    88
    99SECTIONS {
    10         .image 0x10000000: AT (0) {
    11                 *(BOOTSTRAP)
    12                 *(REALMODE)
     10        .boot 0x10000000: AT (0) {
     11                *(BOOTSTRAP);
     12                *(REALMODE);
    1313                *(.text);
    1414               
     
    2222                *(COMMON);              /* global variables */
    2323        }
     24       
     25        .image 0x10000000+SIZEOF(.boot): AT (SIZEOF(.boot)) SUBALIGN(4096) {
     26                *(.image);
     27        }
    2428}
Note: See TracChangeset for help on using the changeset viewer.