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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b63f4e89 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
RevLine 
[50fda24]1SECTIONS {
2 .text : {
[8a1afd2]3 kernel_load_address = .;
[50fda24]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 */
[f1380b7]13
[50fda24]14 *(.rodata*);
15 *(.sdata);
16 *(.reginfo);
17 . = ALIGN(8);
18 symbol_table = .;
19 *(symtab.*);
20 }
21 .sbss : {
22 *(.sbss);
23 *(.scommon);
24 }
[f1380b7]25
[50fda24]26 kdata_end = .;
[f1380b7]27
[50fda24]28 /DISCARD/ : {
29 *(.mdebug*);
30 *(.pdr);
31 *(.comment);
32 *(.note);
33 }
34}
Note: See TracBrowser for help on using the repository browser.