Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / arch / mips / lasat / image / romscript.normal
diff --git a/kernel/arch/mips/lasat/image/romscript.normal b/kernel/arch/mips/lasat/image/romscript.normal
new file mode 100644 (file)
index 0000000..0864c96
--- /dev/null
@@ -0,0 +1,23 @@
+OUTPUT_ARCH(mips)
+
+SECTIONS
+{
+  .text :
+  {
+    *(.text..start)
+  }
+
+  /* Data in ROM */
+
+  .data ALIGN(0x10) :
+  {
+    *(.data)
+  }
+  _image_start = ADDR(.data);
+  _image_size = SIZEOF(.data);
+
+  .other :
+  {
+    *(.*)
+  }
+}