forked from len0rd/rockbox
		
	git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6029 a1c6a512-1295-4272-9138-f99709370657
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| #include "config.h"
 | |
| 
 | |
| /* These output formats should be in the config-files */
 | |
| 
 | |
| #if CONFIG_CPU == MCF5249
 | |
| OUTPUT_FORMAT(elf32-m68k)
 | |
| #else
 | |
| OUTPUT_FORMAT(elf32-sh)
 | |
| #endif
 | |
| 
 | |
| #ifdef DEBUG
 | |
| #define STUBOFFSET 0x10000
 | |
| #else
 | |
| #define STUBOFFSET 0
 | |
| #endif
 | |
| 
 | |
| #ifdef IRIVER_H100
 | |
| #define DRAMORIG 0x30000000
 | |
| #define IRAMORIG 0x10010000
 | |
| #define IRAMSIZE 0x8000
 | |
| #else
 | |
| #define DRAMORIG 0x09000000 + STUBOFFSET
 | |
| #endif
 | |
| 
 | |
| #if MEMORYSIZE >= 32
 | |
| #define PLUGIN_LENGTH 0xC0000
 | |
| #else
 | |
| #define PLUGIN_LENGTH 0x8000
 | |
| #endif
 | |
| #define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGIN_LENGTH
 | |
| #define PLUGIN_ORIGIN (DRAMORIG + (DRAMSIZE))
 | |
| 
 | |
| MEMORY
 | |
| {
 | |
|    PLUGIN_RAM : ORIGIN = PLUGIN_ORIGIN, LENGTH = PLUGIN_LENGTH
 | |
| #ifdef IRIVER_H100
 | |
|    PLUGIN_IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
 | |
| #endif
 | |
| }
 | |
| 
 | |
| SECTIONS
 | |
| {
 | |
|     .text : {
 | |
|         *(.entry)
 | |
|         *(.text)
 | |
|     } > PLUGIN_RAM
 | |
| 
 | |
|     .data : {
 | |
|         *(.data)
 | |
|     } > PLUGIN_RAM
 | |
| 
 | |
|     /DISCARD/ : {
 | |
|         *(.eh_frame)
 | |
|     }
 | |
| 
 | |
|     .bss : {
 | |
|         *(.bss)
 | |
|     } > PLUGIN_RAM
 | |
| 
 | |
|     .rodata : {
 | |
|         *(.rodata)
 | |
|         *(.rodata.str1.1)
 | |
|         *(.rodata.str1.4)
 | |
|         . = ALIGN(0x4);
 | |
| #ifdef IRIVER_H100
 | |
|         iramcopy = .;
 | |
| #endif
 | |
|     } > PLUGIN_RAM
 | |
| 
 | |
| #ifdef IRIVER_H100
 | |
|     .iram IRAMORIG : AT ( iramcopy)
 | |
|     {
 | |
|         iramstart = .;
 | |
|         *(.icode)
 | |
|         *(.idata)
 | |
|         iramend = .;
 | |
|     } > PLUGIN_IRAM
 | |
| #endif
 | |
| }
 |