feat: lunadbg GDB plugin to ease kernel debugging process.
[lunaix-os.git] / lunaix-os / usr / link-usr.ld
index 27a50201ac6f63948944c7082a9c73f00f8d1c42..ab77bb42f0c1b9f24aa16a473ebec4a6160fceb4 100644 (file)
@@ -3,19 +3,19 @@ ENTRY(_start)
 SECTIONS {
     . = 0x400000;
 
-    .text : {
+    .text BLOCK(4K) : {
         *(.text)
     }
 
-    .data : {
+    .data BLOCK(4K) : {
         *(.data)
     }
 
-    .ro.data : {
+    .ro.data BLOCK(4K) : {
         *(.ro.data)
     }
 
-    .bss : {
+    .bss BLOCK(4K) : {
         *(.bss)
     }
 }