source: mainline/boot/arch/ia64/loader/_link.ld.in@ bd83ccea

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

finish unifying pack script

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