summaryrefslogtreecommitdiffstats
path: root/target/linux/image/ar7/src/ld.script.in
blob: 9a9f3ef4f4eac6ccc8b881a5df453a1585a8420d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
	OUTPUT_FORMAT("@@OUTPUT_FORMAT@@")
	OUTPUT_ARCH(mips)
ENTRY(tikernelunzip)
	SECTIONS
{

	/* Allocate memory space on top of kernel bss space */
	. = _fbss;
	.text :
	{
		*(.text)
			*(.rodata)
			*(.rodata1)
			*(.gnu.warning)
			*(.text.init)
			*(.data.init)
	}                    

	.data :
	{
		*(*)
	}

bss :
	{
		inflate_bss_start = .;
		*(.dynbss)
			*(.bss)
			*(COMMON)
			*(.sbss)
			*(.scommon)
			inflate_bss_end = .;
		. = ALIGN (0x8000);
		inflate_slide_window = .;
		. += 0x8000;  /* slide window is 8000h */
		inflate_free_memory_start = .;
	}



}