source: mainline/kernel/arch/ia64/_link.ld.in@ c98e6ee

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c98e6ee was ef042e0, checked in by Jakub Vana <jakub.vana@…>, 18 years ago

IA64 rest of neaded changes to work with simics keyboard

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