Changeset c89ae25 in mainline for kernel/arch/ia32/_link.ld.in
- Timestamp:
- 2023-10-27T17:24:14Z (21 months 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
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/_link.ld.in
r0373af9 rc89ae25 17 17 .unmapped (BOOT_OFFSET + SIZEOF_HEADERS): AT (BOOT_OFFSET + SIZEOF_HEADERS) { 18 18 unmapped_start = .; 19 *(K_TEXT_START);20 *(K_DATA_START);19 KEEP(*(K_TEXT_START)); 20 KEEP(*(K_DATA_START)); 21 21 unmapped_end = .; 22 22 } … … 28 28 29 29 kdata_start = .; 30 *(.data ); /* initialized data */30 *(.data .data.*); /* initialized data */ 31 31 *(.rodata .rodata.*); 32 32 *(.eh_frame .eh_frame.*); /* stack unwinding data */ … … 35 35 36 36 /* bss can't be omitted from the ELF image. */ 37 *(.bss ); /* uninitialized static variables */37 *(.bss .bss.*); /* uninitialized static variables */ 38 38 kdata_end = .; 39 39 }
Note:
See TracChangeset
for help on using the changeset viewer.