Changeset dc5c303 in mainline for boot/arch/arm32/_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/arm32/_link.ld.in
r42c2e65 rdc5c303 7 7 .text : { 8 8 loader_start = .; 9 *(BOOTSTRAP);10 *(.text );9 KEEP(*(BOOTSTRAP)); 10 *(.text .text.*); 11 11 } 12 12 . = BOOT_BASE + 0x8000; … … 14 14 *(BOOTPT); /* bootstrap page table */ 15 15 *(BOOTSTACK); /* bootstrap stack */ 16 *(.data); /* initialized data */ 17 *(.rodata); 18 *(.rodata.*); 19 *(.sdata); 20 *(.reginfo); 21 *(.sbss); 22 *(.scommon); 23 *(.bss); /* uninitialized static variables */ 16 *(.data .data.*); /* initialized data */ 17 *(.rodata .rodata.*); 18 *(.sdata .sdata.*); 19 *(.sbss .sbss.*); 20 *(.scommon .scommon.*); 21 *(.bss .bss.*); /* uninitialized static variables */ 24 22 *(COMMON); /* global variables */ 25 23 loader_end = .; 26 24 payload_start = .; 27 *(.payload);25 KEEP(*(.payload)); 28 26 payload_end = .; 29 27 }
Note:
See TracChangeset
for help on using the changeset viewer.