Subversion Repositories freemyipod

Rev

Rev 314 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
670 theseven 1
ENTRY(__emcore_entrypoint)
145 theseven 2
OUTPUT_FORMAT(elf32-littlearm)
3
OUTPUT_ARCH(arm)
4
 
5
MEMORY
6
{
670 theseven 7
    VIRTUAL : ORIGIN = 0x00000000, LENGTH = 0x10000000
145 theseven 8
}
9
 
10
SECTIONS
11
{
12
    .text :
13
    {
670 theseven 14
        __emcore_app_base = .;
15
	KEEP(.emcoreentrypoint*)
16
	*(.emcoreentrypoint*)
145 theseven 17
        *(.text*)
18
        *(.glue_7)
19
        *(.glue_7t)
670 theseven 20
        . = ALIGN(0x10);
21
    } > VIRTUAL
22
 
23
    .data :
24
    {
145 theseven 25
        *(.rodata*)
26
        . = ALIGN(0x4);
27
        *(.data*)
670 theseven 28
        . = ALIGN(0x10);
29
    } > VIRTUAL
145 theseven 30
 
31
    .bss (NOLOAD) :
32
    {
33
        *(.bss*)
34
        *(COMMON)
670 theseven 35
    } > VIRTUAL
145 theseven 36
 
37
    /DISCARD/ :
38
    {
39
        *(.eh_frame)
40
    }
41
 
42
}