Changeset f2cb80a in mainline for kernel/arch/arm32/_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/arm32/_link.ld.in
r86f862c rf2cb80a 26 26 kernel_load_address = .; 27 27 . = . + SIZEOF_HEADERS; 28 28 29 .text : { 29 30 ktext_start = .; … … 31 32 ktext_end = .; 32 33 } 34 35 /* stack unwinding data */ 36 .eh_frame_hdr : { 37 eh_frame_hdr_start = .; 38 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*); 39 eh_frame_hdr_end = .; 40 } 41 42 .eh_frame : { 43 eh_frame_start = .; 44 KEEP(*(.eh_frame .eh_frame.*)); 45 eh_frame_end = .; 46 } 47 33 48 .data : { 34 49 kdata_start = .; … … 38 53 39 54 *(.rodata .rodata.*); 40 *(.eh_frame .eh_frame.*); /* stack unwinding data */41 *(.eh_frame_hdr .eh_frame_hdr.*);42 55 *(.sdata .sdata.*); 43 }44 .sbss : {45 56 *(.sbss .sbss.*); 46 57 *(.scommon .scommon.*); 58 kdata_end = .; 47 59 } 48 49 kdata_end = .;50 60 51 61 .comment 0 : { *(.comment); }
Note:
See TracChangeset
for help on using the changeset viewer.