source: mainline/arch/ia64/_link.ld@ 393f631

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

Cleanup

  • Property mode set to 100644
File size: 654 bytes
RevLine 
[2217ac3]1/*
2 * IA-64 linker script
3 *
4 * It is ELF format, but its only section looks like this:
5 * kernel text
6 * kernel data
7 *
8 */
9
[30ef8ce]10OUTPUT_FORMAT(elf64-ia64-little)
11ENTRY(kernel_image_start)
12
13SECTIONS {
[ac5d02b]14 .image 0x0000000000001000: AT (0x0000000000001000) {
15 ktext_start = .;
16 *(K_TEXT_START);
[7021492]17 *(.text)
[ac5d02b]18 ktext_end = .;
[7021492]19
[ac5d02b]20 kdata_start = .;
21 *(K_DATA_START)
[7021492]22 *(.rodata .rodata.*)
[ac5d02b]23 *(.opd)
[7021492]24 *(.data)
25 *(.got .got.*)
26 *(.sdata)
27 *(.sbss)
[ac5d02b]28 *(.scommon)
[7021492]29 *(.bss)
[ac5d02b]30 *(COMMON);
31 kdata_end = .;
32 }
[2217ac3]33
[ac5d02b]34 _hardcoded_ktext_size = ktext_end - ktext_start;
35 _hardcoded_kdata_size = kdata_end - kdata_start;
36 _hardcoded_load_address = 0x0000000000001000;
[76cec1e]37
[30ef8ce]38}
Note: See TracBrowser for help on using the repository browser.