source: mainline/boot/arch/ia64/_link.ld.in@ 58ef532

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

ia64 boot

  • Property mode set to 100644
File size: 488 bytes
Line 
1OUTPUT_FORMAT("elf64-ia64-little")
2ENTRY(start)
3
4SECTIONS {
5 .boot 0x4400000: AT (0x4400000) {
6 loader_start = .;
7 *(BOOTSTRAP);
8 *(.text);
9 *(.text.*);
10 *(.sdata);
11 *(.sdata2);
12 *(.sbss);
13 *(.rodata);
14 *(.rodata.*);
15 *(.data .data.*); /* initialized data */
16 __gp = . ;
17 *(.got .got.*);
18 *(.bss); /* uninitialized static variables */
19 *(COMMON);
20 loader_end = .;
21 payload_start = .;
22 *(.payload);
23 payload_end = .;
24 }
25
26 /DISCARD/ : {
27 *(.*);
28 }
29}
Note: See TracBrowser for help on using the repository browser.