Architectural Support: x86_64 (#37)
[lunaix-os.git] / lunaix-os / usr / link-usr.ld
diff --git a/lunaix-os/usr/link-usr.ld b/lunaix-os/usr/link-usr.ld
deleted file mode 100644 (file)
index ab77bb4..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-ENTRY(_start)
-
-SECTIONS {
-    . = 0x400000;
-
-    .text BLOCK(4K) : {
-        *(.text)
-    }
-
-    .data BLOCK(4K) : {
-        *(.data)
-    }
-
-    .ro.data BLOCK(4K) : {
-        *(.ro.data)
-    }
-
-    .bss BLOCK(4K) : {
-        *(.bss)
-    }
-}