summaryrefslogtreecommitdiff
path: root/arch/cris/boot/compressed/decompress_v32.lds
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2009-06-09 12:50:57 +0400
committerJoerg Roedel <joerg.roedel@amd.com>2009-06-09 12:50:57 +0400
commitd2dd01de9924ae24afeba5aa5bc2e08287701df6 (patch)
tree3021bf496579a48984666355b59df5e44b42dd32 /arch/cris/boot/compressed/decompress_v32.lds
parent367d04c4ec02dad34d80452e32e3370db7fb6fee (diff)
parent62a6f465f6572e1f28765c583c12753bb3e23715 (diff)
downloadlinux-d2dd01de9924ae24afeba5aa5bc2e08287701df6.tar.xz
Merge commit 'tip/core/iommu' into amd-iommu/fixes
Diffstat (limited to 'arch/cris/boot/compressed/decompress_v32.lds')
-rw-r--r--arch/cris/boot/compressed/decompress_v32.lds30
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/cris/boot/compressed/decompress_v32.lds b/arch/cris/boot/compressed/decompress_v32.lds
new file mode 100644
index 000000000000..3c837feca3ac
--- /dev/null
+++ b/arch/cris/boot/compressed/decompress_v32.lds
@@ -0,0 +1,30 @@
+/*#OUTPUT_FORMAT(elf32-us-cris) */
+OUTPUT_ARCH (crisv32)
+
+MEMORY
+ {
+ dram : ORIGIN = 0x40700000,
+ LENGTH = 0x00100000
+ }
+
+SECTIONS
+{
+ .text :
+ {
+ _stext = . ;
+ *(.text)
+ *(.rodata)
+ *(.rodata.*)
+ _etext = . ;
+ } > dram
+ .data :
+ {
+ *(.data)
+ _edata = . ;
+ } > dram
+ .bss :
+ {
+ *(.bss)
+ _end = ALIGN( 0x10 ) ;
+ } > dram
+}