Changeset dc5c303 in mainline for boot/arch/riscv64/_link.ld.in
- Timestamp:
- 2023-12-28T13:59:23Z (14 months ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (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@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/riscv64/_link.ld.in
r42c2e65 rdc5c303 8 8 .text : { 9 9 loader_start = .; 10 *(BOOTSTRAP);11 *(.text );10 KEEP(*(BOOTSTRAP)); 11 *(.text .text.*); 12 12 } 13 13 … … 27 27 28 28 .data : { 29 *(.data); /* initialized data */ 30 *(.rodata); 31 *(.rodata.*); 32 *(.sdata); 33 *(.reginfo); 34 *(.sbss); 35 *(.scommon); 36 *(.bss); /* uninitialized static variables */ 29 *(.data .data.*); /* initialized data */ 30 *(.rodata .rodata.*); 31 *(.sdata .sdata.*); 32 *(.sbss .sbss.*); 33 *(.scommon .scommon.*); 34 *(.bss .bss.*); /* uninitialized static variables */ 37 35 *(COMMON); /* global variables */ 38 36 loader_end = .; 39 37 payload_start = .; 40 *(.payload);38 KEEP(*(.payload)); 41 39 payload_end = .; 42 40 }
Note:
See TracChangeset
for help on using the changeset viewer.