source: mainline/kernel/arch/abs32le/_link.ld.in@ 29beac8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 29beac8 was 8a1afd2, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

Remove hardcoded data variables from kernel linker scripts

  • Property mode set to 100644
File size: 545 bytes
Line 
1SECTIONS {
2 .text : {
3 kernel_load_address = .;
4 ktext_start = .;
5 *(.text);
6 ktext_end = .;
7 }
8 .data : {
9 kdata_start = .;
10 *(.data); /* initialized data */
11 *(.bss); /* uninitialized static variables */
12 *(COMMON); /* global variables */
13
14 *(.rodata*);
15 *(.sdata);
16 *(.reginfo);
17 . = ALIGN(8);
18 symbol_table = .;
19 *(symtab.*);
20 }
21 .sbss : {
22 *(.sbss);
23 *(.scommon);
24 }
25
26 kdata_end = .;
27
28 /DISCARD/ : {
29 *(.mdebug*);
30 *(.pdr);
31 *(.comment);
32 *(.note);
33 }
34}
Note: See TracBrowser for help on using the repository browser.