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