Changeset c4b3e3e in mainline for arch/amd64/_link.ld
- Timestamp:
- 2005-09-03T19:33:52Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c835e7c
- Parents:
- 78665c0
- File:
-
- 1 edited
-
arch/amd64/_link.ld (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/_link.ld
r78665c0 rc4b3e3e 18 18 *(K_TEXT_START_2); 19 19 unmapped_ktext_end = .; 20 20 21 unmapped_kdata_start = .; 21 22 *(K_DATA_START); … … 23 24 } 24 25 25 .mapped (0xffffffff80 000000+SIZEOF(.unmapped)+0x8000) : AT (0x8000+SIZEOF(.unmapped)) {26 .mapped (0xffffffff80100000+0x8000+SIZEOF(.unmapped)) : AT (0x8000+SIZEOF(.unmapped)) { 26 27 ktext_start = .; 27 28 *(BOOT_DATA); … … 38 39 hardcoded_kdata_size = .; 39 40 QUAD(kdata_end - kdata_start + (unmapped_kdata_end - unmapped_kdata_start)); 41 hardcoded_unmapped_ktext_size = .; 42 LONG(unmapped_ktext_end - unmapped_ktext_start); 43 hardcoded_unmapped_kdata_size = .; 44 LONG(unmapped_kdata_end - unmapped_kdata_start); 40 45 *(COMMON); /* global variables */ 41 46 … … 51 56 kdata_end = .; 52 57 } 53 _map_address = 0xffffffff80000000; 58 _map_address = 0xffffffff80100000; 59 _hardcoded_kernel_size = (ktext_end - ktext_start) + (unmapped_ktext_end - unmapped_ktext_start) + (kdata_end - kdata_start) + (unmapped_kdata_end - unmapped_kdata_start); 60 54 61 e820table_boot = e820table - _map_address; 55 62 e820counter_boot = e820counter - _map_address;
Note:
See TracChangeset
for help on using the changeset viewer.
