aboutsummaryrefslogtreecommitdiffstats
path: root/arch/cris/arch-v10/boot/compressed/decompress.lds
diff options
context:
space:
mode:
authorJesper Nilsson <jesper@jni.nu>2008-07-14 02:59:48 -0400
committerJesper Nilsson <jesper@jni.nu>2008-07-14 02:59:48 -0400
commit404571525db92bafeddb0cf9febb21aac6613dca (patch)
tree56d7a48e40517ba483e031b54d6df3be7e0cc4e7 /arch/cris/arch-v10/boot/compressed/decompress.lds
parentd17ffb4c9d86194bb74cbc30f4b65de59c27f6cd (diff)
[CRIS] Rename boot-linkscripts and fix the path to them.
This makes the CRIS-port directories follow the same naming convention as the rest of the kernel. Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Diffstat (limited to 'arch/cris/arch-v10/boot/compressed/decompress.lds')
-rw-r--r--arch/cris/arch-v10/boot/compressed/decompress.lds30
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/cris/arch-v10/boot/compressed/decompress.lds b/arch/cris/arch-v10/boot/compressed/decompress.lds
new file mode 100644
index 000000000000..e80f4594d543
--- /dev/null
+++ b/arch/cris/arch-v10/boot/compressed/decompress.lds
@@ -0,0 +1,30 @@
1/* OUTPUT_FORMAT(elf32-us-cris) */
2OUTPUT_FORMAT(elf32-cris)
3
4MEMORY
5 {
6 dram : ORIGIN = 0x40700000,
7 LENGTH = 0x00100000
8 }
9
10SECTIONS
11{
12 .text :
13 {
14 _stext = . ;
15 *(.text)
16 *(.rodata)
17 *(.rodata.*)
18 _etext = . ;
19 } > dram
20 .data :
21 {
22 *(.data)
23 _edata = . ;
24 } > dram
25 .bss :
26 {
27 *(.bss)
28 _end = ALIGN( 0x10 ) ;
29 } > dram
30}