License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / h8300 / boot / compressed / vmlinux.lds
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
06706c96
YS
2SECTIONS
3{
4 .text :
5 {
6 __stext = . ;
7 __text = .;
8 *(.text..startup)
9 *(.text)
10 __etext = . ;
11 }
12
13 .rodata :
14 {
15 *(.rodata)
16 }
af3da579 17 . = ALIGN(0x4) ;
06706c96
YS
18 .data :
19
20 {
3724d318 21 . = ALIGN(0x4) ;
06706c96
YS
22 __sdata = . ;
23 ___data_start = . ;
24 *(.data.*)
25 }
af3da579 26 . = ALIGN(0x4) ;
06706c96
YS
27 .bss :
28 {
06706c96
YS
29 __sbss = . ;
30 *(.bss*)
31 . = ALIGN(0x4) ;
32 __ebss = . ;
06706c96 33 }
78f02cac 34 _end = . ;
06706c96 35}