Subversion Repositories freemyipod

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
366 theseven 1
ENTRY(__embios_executable_hdr)
2
OUTPUT_FORMAT(elf32-littlearm)
3
OUTPUT_ARCH(arm)
4
 
5
MEMORY
6
{
7
    LOWERRAM : ORIGIN = 0x08000000, LENGTH = 0x00f00000
8
    UPPERRAM : ORIGIN = 0x08f00000, LENGTH = 0x03000000
9
}
10
 
11
SECTIONS
12
{
13
    .bss (NOLOAD) :
14
    {
15
        __bss_start = .;
16
        *(.bss*)
17
        *(COMMON)
18
        __bss_end = .;
19
        *(.stack*)
20
    } > LOWERRAM
21
 
22
    .text :
23
    {
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 = .;
35
    } > UPPERRAM
36
 
37
    /DISCARD/ :
38
    {
39
        *(.eh_frame)
40
    }
41
 
42
}