source: mainline/kernel/arch/ia32/_link.ld.in

Last change on this file was 6677acb, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 19 months ago

Emit .text/.data/.eh_frame sections in kernel ELF files

Gives tools like objdump an easier time interpreting contents of
the file, and allows kernel to find .eh_frame_hdr since the linker
emits a program header for it when it's present under the standard
name.

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/** IA-32 linker script
2 *
3 * umapped section:
4 * kernel text
5 * kernel data
6 * mapped section:
7 * kernel text
8 * kernel data
9 */
10
11#include <arch/boot/boot.h>
12#include <arch/mm/page.h>
13
14SECTIONS {
15 kernel_load_address = PA2KA(BOOT_OFFSET);
16
17 .unmapped (BOOT_OFFSET + SIZEOF_HEADERS): AT (BOOT_OFFSET + SIZEOF_HEADERS) {
18 unmapped_start = .;
19 KEEP(*(K_TEXT_START));
20 KEEP(*(K_DATA_START));
21 unmapped_end = .;
22 }
23
24 .text (PA2KA(BOOT_OFFSET) + SIZEOF_HEADERS + SIZEOF(.unmapped)): AT (BOOT_OFFSET + SIZEOF_HEADERS + SIZEOF(.unmapped)) {
25 ktext_start = .;
26 *(.text .text.*);
27 ktext_end = .;
28 }
29
30 /* stack unwinding data */
31 .eh_frame_hdr : {
32 eh_frame_hdr_start = .;
33 *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*);
34 eh_frame_hdr_end = .;
35 }
36 .eh_frame : {
37 eh_frame_start = .;
38 KEEP(*(.eh_frame .eh_frame.*));
39 eh_frame_end = .;
40 }
41
42 .data : {
43 kdata_start = .;
44 *(.rodata .rodata.*); /* read-only global variables */
45 *(.data .data.*); /* non-zero initialized global variables */
46
47 /*
48 * When .bss is not physically present in the ELF file (MemSz > FileSz)
49 * the kernel crashes during early boot. Not sure which part of the
50 * boot process is to blame, for now just keep .bss packaged with .data
51 * so that FileSz == MemSz.
52 */
53
54 *(.bss .bss.*); /* uninitialized global variables */
55 *(COMMON); /* non-`static` global variables without an extern declaration */
56 kdata_end = .;
57 }
58
59 .comment 0 : { *(.comment); }
60 .debug_abbrev 0 : { *(.debug_abbrev); }
61 .debug_abbrev.dwo 0 : { *( .debug_abbrev.dwo); }
62 .debug_addr 0 : { *(.debug_addr); }
63 .debug_aranges 0 : { *(.debug_aranges); }
64 .debug_cu_index 0 : { *(.debug_cu_index); }
65 .debug_frame 0 : { *(.debug_frame); }
66 .debug_frame_hdr 0 : { *(.debug_frame_hdr); }
67 .debug_info 0 : { *(.debug_info); }
68 .debug_info.dwo 0 : { *(.debug_info.dwo); }
69 .debug_line 0 : { *(.debug_line); }
70 .debug_line.dwo 0 : { *(.debug_line.dwo); }
71 .debug_line_str 0 : { *(.debug_line_str); }
72 .debug_loc 0 : { *(.debug_loc); }
73 .debug_loclists 0 : { *(.debug_loclists); }
74 .debug_loclists.dwo 0 : { *(.debug_loclists.dwo); }
75 .debug_macinfo 0 : { *(.debug_macinfo); }
76 .debug_macro 0 : { *(.debug_macro); }
77 .debug_macro.dwo 0 : { *(.debug_macro.dwo); }
78 .debug_names 0 : { *(.debug_names); }
79 .debug_pubnames 0 : { *(.debug_pubnames); }
80 .debug_pubtypes 0 : { *(.debug_pubtypes); }
81 .debug_ranges 0 : { *(.debug_ranges); }
82 .debug_rnglists 0 : { *(.debug_rnglists); }
83 .debug_str 0 : { *(.debug_str); }
84 .debug_str.dwo 0 : { *(.debug_str.dwo); }
85 .debug_str_offsets 0 : { *(.debug_str_offsets); }
86 .debug_str_offsets.dwo 0 : { *(.debug_str_offsets.dwo); }
87 .debug_tu_index 0 : { *(.debug_tu_index); }
88 .debug_types 0 : { *(.debug_types); }
89
90 /DISCARD/ : {
91 *(*);
92 }
93
94#ifdef CONFIG_SMP
95
96 ap_boot = unmapped_ap_boot - BOOT_OFFSET + AP_BOOT_OFFSET;
97 ap_gdtr = unmapped_ap_gdtr - BOOT_OFFSET + AP_BOOT_OFFSET;
98 protected_ap_gdtr = PA2KA(ap_gdtr);
99
100#endif /* CONFIG_SMP */
101
102}
Note: See TracBrowser for help on using the repository browser.