Changeset c245372b in mainline for arch/amd64/_link.ld


Ignore:
Timestamp:
2005-08-29T13:56:47Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4dd0704
Parents:
b52da8d7
Message:

Fixed linker script to include .eh_frame section.
It now boots into protected mode.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/_link.ld

    rb52da8d7 rc245372b  
    1 /** IA-32 linker script
     1/** AMD64 linker script
    22 * 
    33 * umapped section:
     
    2323        }
    2424
    25         .mapped (-0x80000000+SIZEOF(.unmapped)) : AT (0x8000+SIZEOF(.unmapped)) {
     25        .mapped (0xffffffff80000000+SIZEOF(.unmapped)+0x8000) : AT (0x8000+SIZEOF(.unmapped)) {
    2626                ktext_start = .;
    2727                *(.text);
     
    3333                *(COMMON);              /* global variables */
    3434                *(.bss);                /* uninitialized static variables */
     35                *(.eh_frame);
    3536                *(K_DATA_END);
    3637                kdata_end = .;
Note: See TracChangeset for help on using the changeset viewer.