Home | History | Annotate | Line # | Download | only in common
bootxx.ldscript revision 1.2
      1 OUTPUT_FORMAT("elf32-tradbigmips")
      2 OUTPUT_ARCH(mips)
      3 STARTUP(entry.o)
      4 
      5 /*0xa0190000 : EWS-UX's 1stboot VMA */
      6 
      7 MEMORY {
      8 	ram	: o = 0xa0190000, l = 4K
      9 }
     10 
     11 SECTIONS {
     12 	. = 0xa0190000;
     13 	.text ALIGN(4) :
     14 	{
     15 		_text = .;
     16 		*(.text)
     17 		_etext = .;
     18 	} > ram
     19 	.reginfo : { *(.reginfo) } > 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 		_ebss = .;
     34 	} > ram
     35 	_end = .;
     36 	PROVIDE (end = .);	/* libsa/alloc.c use this symbol */
     37 }
     38