mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 14:30:50 +00:00 
			
		
		
		
	 6ab3d5624e
			
		
	
	
		6ab3d5624e
		
	
	
	
	
		
			
			Signed-off-by: Jörn Engel <joern@wohnheim.fh-wedel.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
		
			
				
	
	
		
			31 lines
		
	
	
		
			497 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			497 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| 
 | |
| OUTPUT_ARCH(m32r)
 | |
| ENTRY(startup)
 | |
| SECTIONS
 | |
| {
 | |
|   . = CONFIG_MEMORY_START + 0x00400000;
 | |
| 
 | |
|   _text = .;
 | |
|   .text : { *(.text) } = 0
 | |
|   .rodata : { *(.rodata) *(.rodata.*) }
 | |
|   _etext = .;
 | |
| 
 | |
|   . = ALIGN(32 / 8);
 | |
|   .data : { *(.data) }
 | |
|   . = ALIGN(32 / 8);
 | |
|   _got = .;
 | |
|   .got  : { *(.got) _egot = .; *(.got.*) }
 | |
|   _edata  =  .;
 | |
| 
 | |
|   . = ALIGN(32 / 8);
 | |
|   __bss_start = .;
 | |
|   .bss : { *(.bss) *(.sbss) }
 | |
|   . = ALIGN(32 / 8);
 | |
|   _ebss = .;
 | |
|   . = ALIGN(4096);
 | |
|   . += 4096;
 | |
|   end = . ;
 | |
| 
 | |
|   got_len = (_egot - _got);
 | |
| }
 |