Changes in kernel/arch/ia64/_link.ld.in [19b5929:ef042e0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/_link.ld.in
r19b5929 ref042e0 7 7 */ 8 8 9 #define LOAD_ADDRESS_V 0xe00000000440400010 #define LOAD_ADDRESS_P 0x000000000440400011 12 9 ENTRY(kernel_image_start) 13 10 14 11 SECTIONS { 15 .image LOAD_ADDRESS_V: AT (LOAD_ADDRESS_P) {12 .image 0xe000000004404000: AT (0x0000000004404000) { 16 13 ktext_start = .; 17 14 *(K_TEXT_START); … … 24 21 *(.opd) 25 22 *(.data .data.*) 26 hardcoded_load_address = .;27 QUAD(LOAD_ADDRESS_V);28 hardcoded_ktext_size = .;29 QUAD(ktext_end - ktext_start);30 hardcoded_kdata_size = .;31 QUAD(kdata_end - kdata_start);32 23 *(.got .got.*) 33 24 *(.sdata) … … 47 38 } 48 39 40 _hardcoded_ktext_size = ktext_end - ktext_start; 41 _hardcoded_kdata_size = kdata_end - kdata_start; 42 _hardcoded_load_address = 0xe000000004404000; 43 49 44 }
Note:
See TracChangeset
for help on using the changeset viewer.