aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/boot/compressed/vmlinux.scr.lds.S
blob: ff01d18c922205d08e9f7afed0b0a66401b431f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0 */
SECTIONS
{
  .rodata.compressed : {
#ifndef CONFIG_KERNEL_UNCOMPRESSED
	input_len = .;
	LONG(input_data_end - input_data) input_data = .;
#endif
	*(.data)
#ifndef CONFIG_KERNEL_UNCOMPRESSED
	output_len = . - 4;
	input_data_end = .;
#endif
	}
}