Changeset f2cb80a in mainline for kernel/arch/sparc64/_link.ld.in
- Timestamp:
- 2024-02-23T17:57:23Z (11 months ago)
- Children:
- 192019f
- Parents:
- 86f862c (diff), 90ba06c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2024-02-23 17:57:23)
- git-committer:
- GitHub <noreply@…> (2024-02-23 17:57:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/_link.ld.in
r86f862c rf2cb80a 14 14 kernel_load_address = VMA; 15 15 16 . image(VMA + SIZEOF_HEADERS): AT (LMA + SIZEOF_HEADERS) {16 .text (VMA + SIZEOF_HEADERS): AT (LMA + SIZEOF_HEADERS) { 17 17 ktext_start = .; 18 18 KEEP(*(K_TEXT_START)); 19 19 *(.text .text.*); 20 20 ktext_end = .; 21 } 21 22 23 /* stack unwinding data */ 24 .eh_frame_hdr : { 25 eh_frame_hdr_start = .; 26 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*); 27 eh_frame_hdr_end = .; 28 } 29 30 .eh_frame : { 31 eh_frame_start = .; 32 KEEP(*(.eh_frame .eh_frame.*)); 33 eh_frame_end = .; 34 } 35 36 .data : { 22 37 kdata_start = .; 23 38 KEEP(*(K_DATA_START)); 24 39 *(.rodata .rodata.*); 25 *(.eh_frame .eh_frame.*); /* stack unwinding data */26 *(.eh_frame_hdr .eh_frame_hdr.*);27 40 *(.data .data.*); /* initialized data */ 28 41 *(.sdata .sdata.*);
Note:
See TracChangeset
for help on using the changeset viewer.