Changes in kernel/arch/riscv64/_link.ld.in [6677acb:c89ae25] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/riscv64/_link.ld.in
r6677acb rc89ae25 16 16 kernel_load_address = PA2KA(BOOT_OFFSET); 17 17 18 . text(PA2KA(BOOT_OFFSET) + SIZEOF_HEADERS) : AT (BOOT_OFFSET + SIZEOF_HEADERS) {18 .image (PA2KA(BOOT_OFFSET) + SIZEOF_HEADERS) : AT (BOOT_OFFSET + SIZEOF_HEADERS) { 19 19 ktext_start = .; 20 20 KEEP(*(K_TEXT_START)); 21 21 *(.text .text.*); 22 22 ktext_end = .; 23 }24 23 25 /* stack unwinding data */26 .eh_frame_hdr : {27 eh_frame_hdr_start = .;28 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);29 eh_frame_hdr_end = .;30 }31 32 .eh_frame : {33 eh_frame_start = .;34 KEEP(*(.eh_frame .eh_frame.*));35 eh_frame_end = .;36 }37 38 .data : {39 24 kdata_start = .; 40 25 *(.data .data.*); /* initialized data */ 41 26 *(.rodata .rodata.*); 27 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 28 *(.eh_frame_hdr .eh_frame_hdr.*); 42 29 *(.sdata .sdata.*); 43 30 *(.sbss .sbss.*);
Note:
See TracChangeset
for help on using the changeset viewer.