diff options
author | Jesper Nilsson <jesper@jni.nu> | 2008-07-14 02:59:48 -0400 |
---|---|---|
committer | Jesper Nilsson <jesper@jni.nu> | 2008-07-14 02:59:48 -0400 |
commit | 404571525db92bafeddb0cf9febb21aac6613dca (patch) | |
tree | 56d7a48e40517ba483e031b54d6df3be7e0cc4e7 /arch/cris/arch-v32/boot/rescue/rescue.lds | |
parent | d17ffb4c9d86194bb74cbc30f4b65de59c27f6cd (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-v32/boot/rescue/rescue.lds')
-rw-r--r-- | arch/cris/arch-v32/boot/rescue/rescue.lds | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/arch/cris/arch-v32/boot/rescue/rescue.lds b/arch/cris/arch-v32/boot/rescue/rescue.lds new file mode 100644 index 000000000000..8ac646bc1a2b --- /dev/null +++ b/arch/cris/arch-v32/boot/rescue/rescue.lds | |||
@@ -0,0 +1,43 @@ | |||
1 | /*#OUTPUT_FORMAT(elf32-us-cris) */ | ||
2 | OUTPUT_ARCH (crisv32) | ||
3 | /* Now that NAND support has been stripped, this file could be simplified, | ||
4 | * but it doesn't do any harm on the other hand so why bother. */ | ||
5 | |||
6 | MEMORY | ||
7 | { | ||
8 | bootblk : ORIGIN = 0x38000000, | ||
9 | LENGTH = 0x00004000 | ||
10 | intmem : ORIGIN = 0x38004000, | ||
11 | LENGTH = 0x00005000 | ||
12 | } | ||
13 | |||
14 | SECTIONS | ||
15 | { | ||
16 | .text : | ||
17 | { | ||
18 | _stext = . ; | ||
19 | *(.text) | ||
20 | *(.init.text) | ||
21 | *(.rodata) | ||
22 | *(.rodata.*) | ||
23 | _etext = . ; | ||
24 | } > bootblk | ||
25 | .data : | ||
26 | { | ||
27 | *(.data) | ||
28 | _edata = . ; | ||
29 | } > bootblk | ||
30 | .bss : | ||
31 | { | ||
32 | _bss = . ; | ||
33 | *(.bss) | ||
34 | _end = ALIGN( 0x10 ) ; | ||
35 | } > intmem | ||
36 | |||
37 | /* Get rid of stuff from EXPORT_SYMBOL(foo). */ | ||
38 | /DISCARD/ : | ||
39 | { | ||
40 | *(__ksymtab_strings) | ||
41 | *(__ksymtab) | ||
42 | } | ||
43 | } | ||