summaryrefslogtreecommitdiffstats
path: root/arch/cris/arch-v10/boot/rescue/rescue.lds
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2008-10-17 18:09:48 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2008-10-17 18:09:48 +0200
commitb73b636e8987f8728c6c700377615757691b9a55 (patch)
tree554a4c799888e8934d2bf222bd0fcae2a9146bb4 /arch/cris/arch-v10/boot/rescue/rescue.lds
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6 (diff)
parentCRIS: proper defconfig setup (diff)
downloadlinux-b73b636e8987f8728c6c700377615757691b9a55.tar.xz
linux-b73b636e8987f8728c6c700377615757691b9a55.zip
Merge branch 'for-linus' of git://www.jni.nu/cris
* 'for-linus' of git://www.jni.nu/cris: CRIS: proper defconfig setup [CRIS] Rename boot-linkscripts and fix the path to them.
Diffstat (limited to 'arch/cris/arch-v10/boot/rescue/rescue.lds')
-rw-r--r--arch/cris/arch-v10/boot/rescue/rescue.lds20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/cris/arch-v10/boot/rescue/rescue.lds b/arch/cris/arch-v10/boot/rescue/rescue.lds
new file mode 100644
index 000000000000..0b52a9490db6
--- /dev/null
+++ b/arch/cris/arch-v10/boot/rescue/rescue.lds
@@ -0,0 +1,20 @@
+MEMORY
+ {
+ flash : ORIGIN = 0x00000000,
+ LENGTH = 0x00100000
+ }
+
+SECTIONS
+{
+ .text :
+ {
+ stext = . ;
+ *(.text)
+ etext = . ;
+ } > flash
+ .data :
+ {
+ *(.data)
+ edata = . ;
+ } > flash
+}