Rev 426 | Rev 457 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
455 | decky | 1 | /** SPARC64 linker script |
418 | jermar | 2 | * |
3 | * It is ELF format, but its only section looks like this: |
||
4 | * kernel text |
||
5 | * kernel data |
||
6 | * |
||
7 | */ |
||
8 | |||
455 | decky | 9 | #define __ASM__ |
10 | |||
11 | OUTPUT_FORMAT("elf64-sparc") |
||
418 | jermar | 12 | ENTRY(kernel_image_start) |
13 | |||
14 | SECTIONS { |
||
424 | jermar | 15 | .image 0x4000: AT (0x4000) { |
418 | jermar | 16 | ktext_start = .; |
17 | *(K_TEXT_START) |
||
18 | *(.text); |
||
19 | ktext_end = .; |
||
20 | |||
21 | kdata_start = .; |
||
22 | *(K_DATA_START) |
||
23 | *(.rodata); |
||
24 | *(.rodata.*); |
||
25 | *(.data); /* initialized data */ |
||
26 | *(.sdata); |
||
27 | *(.sdata2); |
||
28 | *(.sbss); |
||
29 | hardcoded_ktext_size = .; |
||
30 | LONG(ktext_end - ktext_start); |
||
31 | hardcoded_kdata_size = .; |
||
32 | LONG(kdata_end - kdata_start); |
||
33 | hardcoded_load_address = .; |
||
426 | jermar | 34 | QUAD(0x4000); |
418 | jermar | 35 | *(.bss); /* uninitialized static variables */ |
36 | *(COMMON); /* global variables */ |
||
37 | |||
38 | symbol_table = .; |
||
39 | *(symtab.*); /* Symbol table, must be LAST symbol!*/ |
||
40 | |||
41 | kdata_end = .; |
||
42 | } |
||
420 | jermar | 43 | |
44 | /DISCARD/ : { |
||
45 | *(.comment); |
||
46 | *(.note*); |
||
47 | } |
||
48 | |||
418 | jermar | 49 | } |