Changes in kernel/arch/ppc32/_link.ld.in [c89ae25:6677acb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/_link.ld.in
rc89ae25 r6677acb 25 25 } 26 26 27 . mappedPA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {27 .text PA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) { 28 28 ktext_start = .; 29 29 KEEP(*(K_TEXT_START)); 30 30 *(.text .text.*); 31 31 ktext_end = .; 32 } 32 33 34 /* stack unwinding data */ 35 .eh_frame_hdr : { 36 eh_frame_hdr_start = .; 37 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*); 38 eh_frame_hdr_end = .; 39 } 40 41 .eh_frame : { 42 eh_frame_start = .; 43 KEEP(*(.eh_frame .eh_frame.*)); 44 eh_frame_end = .; 45 } 46 47 .data : { 33 48 kdata_start = .; 34 49 KEEP(*(K_DATA_START)); 35 50 *(.rodata .rodata.*); 36 *(.eh_frame .eh_frame.*); /* stack unwinding data */37 *(.eh_frame_hdr .eh_frame_hdr.*);38 51 *(.data .data.*); /* initialized data */ 39 52 *(.sdata .sdata.*);
Note:
See TracChangeset
for help on using the changeset viewer.