2017-12-04 09:39:38 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2010-02-26 21:37:53 +00:00
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.rodata.compressed : {
|
2018-06-12 22:00:25 +00:00
|
|
|
#ifndef CONFIG_KERNEL_UNCOMPRESSED
|
2010-02-26 21:37:53 +00:00
|
|
|
input_len = .;
|
|
|
|
LONG(input_data_end - input_data) input_data = .;
|
2018-06-12 22:00:25 +00:00
|
|
|
#endif
|
2010-02-26 21:37:53 +00:00
|
|
|
*(.data)
|
2018-06-12 22:00:25 +00:00
|
|
|
#ifndef CONFIG_KERNEL_UNCOMPRESSED
|
2010-02-26 21:37:53 +00:00
|
|
|
output_len = . - 4;
|
|
|
|
input_data_end = .;
|
2018-06-12 22:00:25 +00:00
|
|
|
#endif
|
2010-02-26 21:37:53 +00:00
|
|
|
}
|
|
|
|
}
|