Changeset f2cb80a in mainline for kernel/arch/arm64/_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/arm64/_link.ld.in
r86f862c rf2cb80a 19 19 kernel_load_address = LOAD_ADDRESS_V; 20 20 21 . image(LOAD_ADDRESS_V + SIZEOF_HEADERS) : AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) {21 .text (LOAD_ADDRESS_V + SIZEOF_HEADERS) : AT (LOAD_ADDRESS_P + SIZEOF_HEADERS) { 22 22 . = ALIGN(16); 23 23 ktext_start = .; … … 25 25 *(.text .text.*); 26 26 ktext_end = .; 27 } 27 28 29 /* stack unwinding data */ 30 .eh_frame_hdr : { 31 eh_frame_hdr_start = .; 32 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*); 33 eh_frame_hdr_end = .; 34 } 35 36 .eh_frame : { 37 eh_frame_start = .; 38 KEEP(*(.eh_frame .eh_frame.*)); 39 eh_frame_end = .; 40 } 41 42 .data : { 28 43 kdata_start = .; 29 44 KEEP(*(K_DATA_START)) 45 *(.rodata .rodata.*); 30 46 *(.data .data.*); /* initialized data */ 31 47 *(.bss .bss.*); /* uninitialized static variables */ 32 48 *(COMMON); /* global variables */ 33 34 *(.rodata .rodata.*);35 *(.eh_frame .eh_frame.*); /* stack unwinding data */36 *(.eh_frame_hdr .eh_frame_hdr.*);37 38 49 kdata_end = .; 39 50 }
Note:
See TracChangeset
for help on using the changeset viewer.