linux/arch/parisc/boot/compressed/vmlinux.scr
Helge Deller 2f3c7b8137 parisc: Add core code for self-extracting kernel
Signed-off-by: Helge Deller <deller@gmx.de>
2017-08-22 16:34:35 +02:00

11 lines
194 B
Plaintext

SECTIONS
{
.rodata.compressed : {
input_len = .;
LONG(input_data_end - input_data) input_data = .;
*(.data)
output_len = . - 4; /* can be at unaligned address */
input_data_end = .;
}
}