]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/cris/arch-v10/boot/compressed/decompress.ld
Linux-2.6.12-rc2
[mirror_ubuntu-artful-kernel.git] / arch / cris / arch-v10 / boot / compressed / decompress.ld
1 OUTPUT_FORMAT(elf32-us-cris)
2
3 MEMORY
4 {
5 dram : ORIGIN = 0x40700000,
6 LENGTH = 0x00100000
7 }
8
9 SECTIONS
10 {
11 .text :
12 {
13 _stext = . ;
14 *(.text)
15 *(.rodata)
16 *(.rodata.*)
17 _etext = . ;
18 } > dram
19 .data :
20 {
21 *(.data)
22 _edata = . ;
23 } > dram
24 .bss :
25 {
26 *(.bss)
27 _end = ALIGN( 0x10 ) ;
28 } > dram
29 }