summaryrefslogtreecommitdiffstats
path: root/apps/init/arch/x86_64/link.ld
diff options
context:
space:
mode:
Diffstat (limited to 'apps/init/arch/x86_64/link.ld')
-rw-r--r--apps/init/arch/x86_64/link.ld10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/init/arch/x86_64/link.ld b/apps/init/arch/x86_64/link.ld
new file mode 100644
index 0000000..45b08f5
--- /dev/null
+++ b/apps/init/arch/x86_64/link.ld
@@ -0,0 +1,10 @@
+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) }
+}