]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/cris/arch-v10/boot/compressed/decompress.ld
[CRIS] Build fixes for compressed and rescue images for v10 and v32:
[net-next-2.6.git] / arch / cris / arch-v10 / boot / compressed / decompress.ld
CommitLineData
bdb144b6
JN
1/* OUTPUT_FORMAT(elf32-us-cris) */
2OUTPUT_FORMAT(elf32-cris)
1da177e4
LT
3
4MEMORY
5 {
6 dram : ORIGIN = 0x40700000,
7 LENGTH = 0x00100000
8 }
9
10SECTIONS
11{
12 .text :
13 {
14 _stext = . ;
15 *(.text)
16 *(.rodata)
17 *(.rodata.*)
18 _etext = . ;
19 } > dram
20 .data :
21 {
22 *(.data)
23 _edata = . ;
24 } > dram
25 .bss :
26 {
27 *(.bss)
28 _end = ALIGN( 0x10 ) ;
29 } > dram
30}