1SECTIONS {
2	.text : {
3		*(.text)
4	}
5	. = ALIGN (0x1000);
6	.data : {
7		_data_start = .;
8		*(.data)
9	}
10	/DISCARD/ : { *(.*) }
11}
12