source: mainline/kernel/arch/abs32le/_link.ld.in@ 34e1206

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

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

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