License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / cris / boot / rescue / rescue_v10.lds
1 /* SPDX-License-Identifier: GPL-2.0 */
2 MEMORY 
3         {
4         flash : ORIGIN = 0x00000000,
5                 LENGTH = 0x00100000
6         }
7
8 SECTIONS
9 {
10         .text :
11         {
12                 stext = . ;
13                 *(.text)
14                 etext = . ;
15         } > flash
16         .data :
17         {
18                 *(.data)
19                 edata = . ;
20         } > flash
21 }