Changes in kernel/arch/ppc32/_link.ld.in [6677acb:c89ae25] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/_link.ld.in
r6677acb rc89ae25 25 25 } 26 26 27 . textPA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {27 .mapped 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 }33 32 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 : {48 33 kdata_start = .; 49 34 KEEP(*(K_DATA_START)); 50 35 *(.rodata .rodata.*); 36 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 37 *(.eh_frame_hdr .eh_frame_hdr.*); 51 38 *(.data .data.*); /* initialized data */ 52 39 *(.sdata .sdata.*);
Note:
See TracChangeset
for help on using the changeset viewer.