Subversion Repositories freemyipod

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
160 theseven 1
ENTRY(__embios_executable_hdr)
2
OUTPUT_FORMAT(elf32-littlearm)
3
OUTPUT_ARCH(arm)
4
 
5
MEMORY
6
{
365 theseven 7
    LOWERRAM : ORIGIN = 0x08000000, LENGTH = 0x00f00000
8
    UPPERRAM : ORIGIN = 0x08f00000, LENGTH = 0x01000000
160 theseven 9
}
10
 
11
SECTIONS
12
{
253 theseven 13
    .bss (NOLOAD) :
160 theseven 14
    {
314 theseven 15
        __bss_start = .;
253 theseven 16
        *(.bss*)
17
        *(COMMON)
314 theseven 18
        __bss_end = .;
19
        *(.stack*)
365 theseven 20
    } > LOWERRAM
253 theseven 21
 
365 theseven 22
    .text :
253 theseven 23
    {
160 theseven 24
	KEEP(.execheader*)
25
	*(.execheader*)
26
        *(.text*)
27
        *(.glue_7)
28
        *(.glue_7t)
29
        . = ALIGN(0x4);
30
        *(.rodata*)
31
        . = ALIGN(0x4);
32
        *(.data*)
33
        . = ALIGN(0x10);
34
	_scriptstart = .;
365 theseven 35
    } > UPPERRAM
160 theseven 36
 
37
    /DISCARD/ :
38
    {
39
        *(.eh_frame)
40
    }
41
 
42
}