feat: kprintf now goes into dedicated pseudo-dev rather than flooding the framebuffer
[lunaix-os.git] / lunaix-os / usr / link-usr.ld
1 ENTRY(_start)
2
3 SECTIONS {
4     . = 0x400000;
5
6     .text : {
7         *(.text)
8     }
9
10     .data : {
11         *(.data)
12     }
13
14     .ro.data : {
15         *(.ro.data)
16     }
17
18     .bss : {
19         *(.bss)
20     }
21 }