Changeset c245372b in mainline for arch/amd64/_link.ld
- Timestamp:
- 2005-08-29T13:56:47Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4dd0704
- Parents:
- b52da8d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/_link.ld
rb52da8d7 rc245372b 1 /** IA-32linker script1 /** AMD64 linker script 2 2 * 3 3 * umapped section: … … 23 23 } 24 24 25 .mapped ( -0x80000000+SIZEOF(.unmapped)) : AT (0x8000+SIZEOF(.unmapped)) {25 .mapped (0xffffffff80000000+SIZEOF(.unmapped)+0x8000) : AT (0x8000+SIZEOF(.unmapped)) { 26 26 ktext_start = .; 27 27 *(.text); … … 33 33 *(COMMON); /* global variables */ 34 34 *(.bss); /* uninitialized static variables */ 35 *(.eh_frame); 35 36 *(K_DATA_END); 36 37 kdata_end = .;
Note:
See TracChangeset
for help on using the changeset viewer.