feat: kprintf now goes into dedicated pseudo-dev rather than flooding the framebuffer
[lunaix-os.git] / lunaix-os / usr / link-usr.ld
index c0699391d79cb6558e47b64e1e76f7d016c30c84..27a50201ac6f63948944c7082a9c73f00f8d1c42 100644 (file)
@@ -2,4 +2,20 @@ ENTRY(_start)
 
 SECTIONS {
     . = 0x400000;
-}
\ No newline at end of file
+
+    .text : {
+        *(.text)
+    }
+
+    .data : {
+        *(.data)
+    }
+
+    .ro.data : {
+        *(.ro.data)
+    }
+
+    .bss : {
+        *(.bss)
+    }
+}