1# Copyright (C) 2014-2017 Free Software Foundation, Inc.
2# 
3# Copying and distribution of this file, with or without modification,
4# are permitted in any medium without royalty provided the copyright
5# notice and this notice are preserved.
6
7cat <<EOF
8/* Copyright (C) 2014-2017 Free Software Foundation, Inc.
9
10   Copying and distribution of this script, with or without modification,
11   are permitted in any medium without royalty provided the copyright
12   notice and this notice are preserved.  */
13
14OUTPUT_FORMAT("${OUTPUT_FORMAT}")
15OUTPUT_ARCH(${ARCH})
16
17SECTIONS 				
18{ 					
19.text :
20	{ 					
21	  *(.text) 				
22	  *(.strings)
23   	  _etext = .;
24	*(.data)
25	_edata = .;
26	*(.bss)
27	*(COMMON)
28	 _end = .;
29	 }
30}
31EOF
32
33
34
35
36