aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/lasat/image/romscript.normal
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/lasat/image/romscript.normal')
-rw-r--r--arch/mips/lasat/image/romscript.normal23
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/mips/lasat/image/romscript.normal b/arch/mips/lasat/image/romscript.normal
deleted file mode 100644
index 988f8ad189cb..000000000000
--- a/arch/mips/lasat/image/romscript.normal
+++ /dev/null
@@ -1,23 +0,0 @@
1OUTPUT_ARCH(mips)
2
3SECTIONS
4{
5 .text :
6 {
7 *(.text.start)
8 }
9
10 /* Data in ROM */
11
12 .data ALIGN(0x10) :
13 {
14 *(.data)
15 }
16 _image_start = ADDR(.data);
17 _image_size = SIZEOF(.data);
18
19 .other :
20 {
21 *(.*)
22 }
23}