summaryrefslogtreecommitdiffstats
path: root/apps/init/x86_64.ld
diff options
context:
space:
mode:
Diffstat (limited to 'apps/init/x86_64.ld')
-rw-r--r--apps/init/x86_64.ld10
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/init/x86_64.ld b/apps/init/x86_64.ld
deleted file mode 100644
index 45b08f5..0000000
--- a/apps/init/x86_64.ld
+++ /dev/null
@@ -1,10 +0,0 @@
-OUTPUT_ARCH(i386:x86-64)
-
-PAGESIZE = CONSTANT(MAXPAGESIZE);
-
-SECTIONS
-{
- . = 0x1000;
- .text BLOCK(PAGESIZE) : ALIGN(PAGESIZE) { *(.text.start) *(.text) *(.rodata) }
- .data BLOCK(PAGESIZE) : ALIGN(PAGESIZE) { *(.data) *(.bss) }
-}