diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-17 18:09:48 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-17 18:09:48 +0200 |
commit | b73b636e8987f8728c6c700377615757691b9a55 (patch) | |
tree | 554a4c799888e8934d2bf222bd0fcae2a9146bb4 /arch/cris/arch-v10/boot/rescue/rescue.lds | |
parent | Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6 (diff) | |
parent | CRIS: proper defconfig setup (diff) | |
download | linux-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.lds | 20 |
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 +} |