mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-30 23:50:07 +00:00 
			
		
		
		
	Signed-off-by: Brian Murphy <brian@murphy.dk> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
		
			
				
	
	
		
			24 lines
		
	
	
		
			225 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			225 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| OUTPUT_ARCH(mips)
 | |
| 
 | |
| SECTIONS
 | |
| {
 | |
|   .text :
 | |
|   {
 | |
|     *(.text.start)
 | |
|   }
 | |
| 
 | |
|   /* Data in ROM */
 | |
| 
 | |
|   .data ALIGN(0x10) :
 | |
|   {
 | |
|     *(.data)
 | |
|   }
 | |
|   _image_start = ADDR(.data);
 | |
|   _image_size = SIZEOF(.data);
 | |
| 
 | |
|   .other :
 | |
|   {
 | |
|     *(.*)
 | |
|   }
 | |
| }
 |