]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/cris/boot/compressed/decompress_v32.lds
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / cris / boot / compressed / decompress_v32.lds
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
51533b61
MS
2/*#OUTPUT_FORMAT(elf32-us-cris) */
3OUTPUT_ARCH (crisv32)
4
5MEMORY
6 {
7 dram : ORIGIN = 0x40700000,
8 LENGTH = 0x00100000
9 }
10
11SECTIONS
12{
13 .text :
14 {
15 _stext = . ;
16 *(.text)
17 *(.rodata)
18 *(.rodata.*)
19 _etext = . ;
20 } > dram
21 .data :
22 {
23 *(.data)
24 _edata = . ;
25 } > dram
26 .bss :
27 {
28 *(.bss)
29 _end = ALIGN( 0x10 ) ;
30 } > dram
31}