Changeset 9060bd1 in mainline for arch/ia32/_link.ld.in


Ignore:
Timestamp:
2005-09-10T11:20:47Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
24241cf
Parents:
f3a6c8e5
Message:

IA-32 can be now cross-compiled by ./build.ia32 cross.
Unify IA-32 Makefile.inc and Makefile.inc.cross.

Update doc/requirements.

Small changes elsewere.

File:
1 edited

Legend:

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

    rf3a6c8e5 r9060bd1  
    3030        .mapped (PA2KA(BOOT_OFFSET+BOOTSTRAP_OFFSET)+SIZEOF(.unmapped)): AT (BOOTSTRAP_OFFSET+SIZEOF(.unmapped)) {
    3131                ktext_start = .;
    32                 *(BOOT_DATA)
     32                *(BOOT_DATA);
    3333                *(.text);
    3434                ktext_end = .;
     
    4141                LONG(PA2KA(BOOT_OFFSET+BOOTSTRAP_OFFSET));
    4242                hardcoded_ktext_size = .;
    43                 LONG(ktext_end - ktext_start + (unmapped_ktext_end - unmapped_ktext_start));
     43                LONG((ktext_end - ktext_start) + (unmapped_ktext_end - unmapped_ktext_start));
    4444                hardcoded_kdata_size = .;
    45                 LONG(kdata_end - kdata_start + (unmapped_kdata_end - unmapped_kdata_start));
     45                LONG((kdata_end - kdata_start) + (unmapped_kdata_end - unmapped_kdata_start));
    4646                hardcoded_unmapped_ktext_size = .;
    4747                LONG(unmapped_ktext_end - unmapped_ktext_start);
Note: See TracChangeset for help on using the changeset viewer.