tape-kernel 1.0
a modular modern independent kernel
Loading...
Searching...
No Matches
linker.ld
Go to the documentation of this file.
1ENTRY(___start)
2
3SECTIONS
4{
5 . = 1M;
6
7 .multiboot ALIGN(4) : {
8 *(.multiboot)
9 }
10
11 .text ALIGN(4) : {
12 *(.text)
13 }
14
15 .data ALIGN(4) : {
16 *(.data)
17 }
18
19 .bss ALIGN(4) : {
20 *(.bss)
21 }
22
23 /DISCARD/ : {
24 *(.note*)
25 *(.comment)
26 *(.eh_frame*)
27 *(.got*)
28 *(.plt*)
29 }
30}