aboutsummaryrefslogblamecommitdiff
path: root/sys/conf/ldscript.mips.octeon1
blob: 617e8362bdaf6fd0077074ef415b2eaefab45d57 (plain) (tree)
1
2
3
4
5
6
7
8
9

               
             
 



                                
          
                                          
 
                 
                        
                           


                                  
                
 

                          




                              
                 







                              
                  




                                 
                
 
                 






                                    
                







                              
/* $FreeBSD$ */

ENTRY(_start)

PHDRS {
	text PT_LOAD FLAGS(0x7);
}

SECTIONS {
	. = KERNLOADADDR + SIZEOF_HEADERS;

	.text : {
	    	*(.text)
		*(.dynamic)
		etext = .;
		_etext = .;
		. = ALIGN(0x2000);
	} : text

	. = ALIGN(0x2000);
	.rodata : {
		_fdata = .;
	    	*(.rodata)
		. = ALIGN(32);
	}
	
	.data : {
                _rwdata = .;
	    	*(.data)
		. = ALIGN(32);
		CONSTRUCTORS;
	}

	_gp = (. + 0x8000);

	.sdata : {
                _small_start = .;
		*(.sdata)
		. = ALIGN(32);
		edata = .;
		_edata = .;
	} : text

	.sbss : {
		__bss_start = .;
		_fbss = .;
		*(.sbss) *(.scommon)
                _small_end = .;
		. = ALIGN(32);
	}

	.bss : {
		*(.bss)
		*(COMMON)
		. = ALIGN(32);
		_end = .;
		end = .;
	}

}