Changeset c89ae25 in mainline for kernel/arch/riscv64/_link.ld.in
- Timestamp:
- 2023-10-27T17:24:14Z (19 months ago)
- Branches:
- master, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 34120f10, b169619
- Parents:
- 0373af9
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:03:39)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:24:14)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/riscv64/_link.ld.in
r0373af9 rc89ae25 18 18 .image (PA2KA(BOOT_OFFSET) + SIZEOF_HEADERS) : AT (BOOT_OFFSET + SIZEOF_HEADERS) { 19 19 ktext_start = .; 20 *(K_TEXT_START);21 *(.text );20 KEEP(*(K_TEXT_START)); 21 *(.text .text.*); 22 22 ktext_end = .; 23 23 24 24 kdata_start = .; 25 *(.data ); /* initialized data */25 *(.data .data.*); /* initialized data */ 26 26 *(.rodata .rodata.*); 27 27 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 28 28 *(.eh_frame_hdr .eh_frame_hdr.*); 29 *(.sdata); 30 *(.reginfo); 31 *(.sbss); 32 *(.scommon); 33 *(.bss); /* uninitialized static variables */ 29 *(.sdata .sdata.*); 30 *(.sbss .sbss.*); 31 *(.scommon .scommon.*); 32 *(.bss .bss.*); /* uninitialized static variables */ 34 33 *(COMMON); /* global variables */ 35 34 kdata_end = .;
Note:
See TracChangeset
for help on using the changeset viewer.