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