Changes in kernel/arch/ia64/_link.ld.in [c89ae25:6677acb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/_link.ld.in
rc89ae25 r6677acb 15 15 kernel_load_address = LOAD_ADDRESS_V; 16 16 17 . image(LOAD_ADDRESS_V + SIZEOF_HEADERS): AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) {17 .text (LOAD_ADDRESS_V + SIZEOF_HEADERS): AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) { 18 18 . = ALIGN(16); 19 19 ktext_start = .; … … 21 21 *(.text .text.*) 22 22 ktext_end = .; 23 } 23 24 25 /* stack unwinding data */ 26 .eh_frame_hdr : { 27 eh_frame_hdr_start = .; 28 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*); 29 eh_frame_hdr_end = .; 30 } 31 32 .eh_frame : { 33 eh_frame_start = .; 34 KEEP(*(.eh_frame .eh_frame.*)); 35 eh_frame_end = .; 36 } 37 38 .data : { 24 39 kdata_start = .; 25 40 KEEP(*(K_DATA_START)); 26 41 *(.rodata .rodata.*); 27 *(.eh_frame .eh_frame.*); /* stack unwinding data */28 *(.eh_frame_hdr .eh_frame_hdr.*);29 42 *(.opd) 30 43 *(.data .data.*)
Note:
See TracChangeset
for help on using the changeset viewer.