source: mainline/arch/sparc64/_link.ld.in@ c2b95d3

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c2b95d3 was 6e259d5, checked in by Martin Decky <martin@…>, 20 years ago

link kernel in ARCH's native format first, then use objcopy to create output format

  • Property mode set to 100644
File size: 856 bytes
Line 
1/** SPARC64 linker script
2 *
3 * It is ELF format, but its only section looks like this:
4 * kernel text
5 * kernel data
6 *
7 */
8
9#define __ASM__
10
11ENTRY(kernel_image_start)
12
13SECTIONS {
14 .image 0x4000: AT (0x4000) {
15 ktext_start = .;
16 *(K_TEXT_START)
17 *(.text);
18 ktext_end = .;
19
20 kdata_start = .;
21 *(K_DATA_START)
22 *(.rodata);
23 *(.rodata.*);
24 *(.data); /* initialized data */
25 *(.sdata);
26 *(.sdata2);
27 *(.sbss);
28 hardcoded_ktext_size = .;
29 LONG(ktext_end - ktext_start);
30 hardcoded_kdata_size = .;
31 LONG(kdata_end - kdata_start);
32 hardcoded_load_address = .;
33 QUAD(0x4000);
34 *(.bss); /* uninitialized static variables */
35 *(COMMON); /* global variables */
36
37 symbol_table = .;
38 *(symtab.*); /* Symbol table, must be LAST symbol!*/
39
40 kdata_end = .;
41 }
42
43 /DISCARD/ : {
44 *(.comment);
45 *(.note*);
46 }
47
48}
Note: See TracBrowser for help on using the repository browser.