]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/cris/boot/rescue/rescue_v10.lds
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / arch / cris / boot / rescue / rescue_v10.lds
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2MEMORY
3 {
4 flash : ORIGIN = 0x00000000,
5 LENGTH = 0x00100000
6 }
7
8SECTIONS
9{
10 .text :
11 {
12 stext = . ;
13 *(.text)
14 etext = . ;
15 } > flash
16 .data :
17 {
18 *(.data)
19 edata = . ;
20 } > flash
21}