Home | History | Annotate | Line # | Download | only in common
bootxx.ldscript revision 1.1
      1 
      2 OUTPUT_FORMAT("elf32-tradbigmips")
      3 OUTPUT_ARCH(mips)
      4 STARTUP(entry.o)
      5 
      6 /*0xa0190000 : EWS-UX's 1stboot VMA */
      7 
      8 MEMORY {
      9 	ram	: o = 0xa0190000, l = 4K
     10 }
     11 
     12 SECTIONS {
     13 	. = 0xa0190000;
     14 	.text ALIGN(4) :
     15 	{
     16 		_text = .;
     17 		*(.text)
     18 		_etext = .;
     19 	} > ram
     20 	.data ALIGN(4) :
     21 	{
     22 		_data = .;
     23 		*(.rodata)
     24 		*(.data)
     25 		_edata = .;
     26 		PROVIDE (edata = .);
     27 	} > ram
     28 	.bss ALIGN(4) :
     29 	{
     30 		_bss = .;
     31 		*(.bss)
     32 		*(.scommon)
     33 		*(.reginfo)
     34 		_ebss = .;
     35 	} > ram
     36 	_end = .;
     37 	PROVIDE (end = .);	/* libsa/alloc.c use this symbol */
     38 }
     39