Subversion Repositories freemyipod

Rev

Go to most recent revision | 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
{
7
    RAM : ORIGIN = 0x08000000, LENGTH = 0x01f00000
8
}
9
 
10
SECTIONS
11
{
253 theseven 12
    .bss (NOLOAD) :
160 theseven 13
    {
253 theseven 14
        *(.bss*)
15
        *(COMMON)
16
    } > RAM
17
 
18
    .text 0x08f00000:
19
    {
160 theseven 20
	KEEP(.execheader*)
21
	*(.execheader*)
22
        *(.text*)
23
        *(.glue_7)
24
        *(.glue_7t)
25
        . = ALIGN(0x4);
26
        *(.rodata*)
27
        . = ALIGN(0x4);
28
        *(.data*)
29
        . = ALIGN(0x10);
30
	_scriptstart = .;
31
    } > RAM
32
 
33
    /DISCARD/ :
34
    {
35
        *(.eh_frame)
36
    }
37
 
38
}