Add qemu 2.4.0
[kvmfornfv.git] / qemu / tests / multiboot / link.ld
diff --git a/qemu/tests/multiboot/link.ld b/qemu/tests/multiboot/link.ld
new file mode 100644 (file)
index 0000000..3d49b58
--- /dev/null
@@ -0,0 +1,19 @@
+ENTRY(_start)
+
+SECTIONS
+{
+    . = 0x100000;
+    .text : {
+        *(multiboot)
+        *(.text)
+    }
+    .data ALIGN(4096) : {
+        *(.data)
+    }
+    .rodata ALIGN(4096) : {
+        *(.rodata)
+    }
+    .bss ALIGN(4096) : {
+        *(.bss)
+    }
+}