diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-17 09:09:48 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-17 09:09:48 -0700 |
commit | b73b636e8987f8728c6c700377615757691b9a55 (patch) | |
tree | 554a4c799888e8934d2bf222bd0fcae2a9146bb4 /arch/cris/arch-v10/boot/rescue/rescue.lds | |
parent | ed09441dacc2a2d6c170aa3b1f79a041291a813f (diff) | |
parent | 8f808417fe211648c0816e28947cdc74eb1e1032 (diff) |
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 00000000000..0b52a9490db --- /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 +} |