Home | History | Annotate | Line # | Download | only in common
      1 /* $NetBSD: bootxx.ldscript,v 1.3 2006/08/26 14:12:26 tsutsui Exp $ */
      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 	.reginfo : { *(.reginfo) } > ram
     21 	.data ALIGN(4) :
     22 	{
     23 		_data = .;
     24 		*(.rodata)
     25 		*(.rodata.*)
     26 		*(.data)
     27 		_edata = .;
     28 		PROVIDE (edata = .);
     29 	} > ram
     30 	.bss ALIGN(4) :
     31 	{
     32 		_bss = .;
     33 		*(.bss)
     34 		*(.scommon)
     35 		_ebss = .;
     36 	} > ram
     37 	_end = .;
     38 	PROVIDE (end = .);	/* libsa/alloc.c use this symbol */
     39 }
     40