Changeset c89ae25 in mainline for boot/arch/ppc32/_link.ld.in
- Timestamp:
- 2023-10-27T17:24:14Z (2 years 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
-
boot/arch/ppc32/_link.ld.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/_link.ld.in
r0373af9 rc89ae25 5 5 .text : { 6 6 loader_start = .; 7 *(BOOTSTRAP); 8 *(.text); 9 *(.text.*); 7 KEEP(*(BOOTSTRAP)); 8 *(.text .text.*); 10 9 } 11 10 .data : { 12 *(.data); /* initialized data */ 13 *(.rodata); 14 *(.rodata.*); 15 *(.sdata); 16 *(.reginfo); 17 *(.sbss); 18 *(.scommon); 19 *(.bss); /* uninitialized static variables */ 11 *(.data .data.*); /* initialized data */ 12 *(.rodata .rodata.*); 13 *(.sdata .sdata.*); 14 *(.sbss .sbss.*); 15 *(.scommon .scommon.*); 16 *(.bss .bss.*); /* uninitialized static variables */ 20 17 *(COMMON); /* global variables */ 21 18 loader_end = .; 22 19 payload_start = .; 23 *(.payload);20 KEEP(*(.payload)); 24 21 payload_end = .; 25 22 }
Note:
See TracChangeset
for help on using the changeset viewer.
