Changeset c89ae25 in mainline for kernel/arch/arm32
- 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
-
kernel/arch/arm32/_link.ld.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/_link.ld.in
r0373af9 rc89ae25 28 28 .text : { 29 29 ktext_start = .; 30 *(.text );30 *(.text .text.*); 31 31 ktext_end = .; 32 32 } 33 33 .data : { 34 34 kdata_start = .; 35 *(.data ); /* initialized data */36 *(.bss ); /* uninitialized static variables */35 *(.data .data.*); /* initialized data */ 36 *(.bss .bss.*); /* uninitialized static variables */ 37 37 *(COMMON); /* global variables */ 38 38 … … 40 40 *(.eh_frame .eh_frame.*); /* stack unwinding data */ 41 41 *(.eh_frame_hdr .eh_frame_hdr.*); 42 *(.sdata); 43 *(.reginfo); 42 *(.sdata .sdata.*); 44 43 } 45 44 .sbss : { 46 *(.sbss );47 *(.scommon );45 *(.sbss .sbss.*); 46 *(.scommon .scommon.*); 48 47 } 49 48
Note:
See TracChangeset
for help on using the changeset viewer.
