xref: /OK3568_Linux_fs/kernel/arch/nios2/boot/compressed/vmlinux.scr (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun/*
2*4882a593Smuzhiyun * Copyright (C) 2009 Thomas Chou <thomas@wytron.com.tw>
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or modify
5*4882a593Smuzhiyun * it under the terms of the GNU General Public License as published by
6*4882a593Smuzhiyun * the Free Software Foundation; either version 2 of the License, or
7*4882a593Smuzhiyun * (at your option) any later version.
8*4882a593Smuzhiyun *
9*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful,
10*4882a593Smuzhiyun * but WITHOUT ANY WARRANTY; without even the implied warranty of
11*4882a593Smuzhiyun * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12*4882a593Smuzhiyun * GNU General Public License for more details.
13*4882a593Smuzhiyun *
14*4882a593Smuzhiyun * You should have received a copy of the GNU General Public License
15*4882a593Smuzhiyun * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16*4882a593Smuzhiyun *
17*4882a593Smuzhiyun */
18*4882a593Smuzhiyun
19*4882a593SmuzhiyunSECTIONS
20*4882a593Smuzhiyun{
21*4882a593Smuzhiyun	.data : {
22*4882a593Smuzhiyun		input_len = .;
23*4882a593Smuzhiyun		LONG(input_data_end - input_data) input_data = .;
24*4882a593Smuzhiyun		*(.data)
25*4882a593Smuzhiyun		. = ALIGN(4);
26*4882a593Smuzhiyun		input_data_end = .;
27*4882a593Smuzhiyun	}
28*4882a593Smuzhiyun}
29