Changeset eb1b8b6 in mainline for arch/ia64/_link.ld.in


Ignore:
Timestamp:
2006-02-08T00:08:55Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
085d973
Parents:
8b3eebb
Message:

Change ia64 kernel image to link and load at 0x100000 where
it (or its heap or stack) won't mess up with the ROM region.

Blacklist ia64 frame 0 from frame allocator so that 0 won't be
returned to malloc and friends. This can be reenabled again
once the kernel is not identity mapped.

File:
1 edited

Legend:

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

    r8b3eebb reb1b8b6  
    1212
    1313SECTIONS {
    14         .image 0x0000000000001000: AT (0x0000000000001000) {
     14        .image 0x0000000000100000: AT (0x0000000000100000) {
    1515                ktext_start = .;
    1616                *(K_TEXT_START);
     
    3838        _hardcoded_ktext_size = ktext_end - ktext_start;
    3939        _hardcoded_kdata_size = kdata_end - kdata_start;
    40         _hardcoded_load_address = 0x0000000000001000;
     40        _hardcoded_load_address = 0x0000000000100000;
    4141
    4242}
Note: See TracChangeset for help on using the changeset viewer.