Subversion Repositories freemyipod

Rev

Rev 314 | Rev 459 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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