Changeset 653a4f7 in mainline


Ignore:
Timestamp:
2008-12-19T17:36:57Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
723060a
Parents:
fe6a74c
Message:

Fix linker script in ia64 bootloader. It was putting everything to the small data segment, causing it to overflow.

File:
1 edited

Legend:

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

    rfe6a74c r653a4f7  
    1313                _got = . ;
    1414                *(.got .got.*);               
     15                *(.bss);                /* uninitialized static variables */
     16                *(COMMON);
     17        }
     18
     19        .sboot : {
    1520                *(.sdata);
    1621                *(.sdata2);
    1722                *(.sbss);
    18                 *(.bss);                /* uninitialized static variables */
    19                 *(COMMON);
    2023        }
    2124       
Note: See TracChangeset for help on using the changeset viewer.