OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [or32/] [board/] [ram.ld] - Diff between revs 1168 and 1262

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 1168 Rev 1262
Line 3... Line 3...
        romvec : ORIGIN = 0xf0010000, LENGTH = 0x00002000
        romvec : ORIGIN = 0xf0010000, LENGTH = 0x00002000
        flash  : ORIGIN = 0xf0012000, LENGTH = 0x00200000 - 0x00012000
        flash  : ORIGIN = 0xf0012000, LENGTH = 0x00200000 - 0x00012000
        eflash : ORIGIN = 0xf0200000, LENGTH = 0
        eflash : ORIGIN = 0xf0200000, LENGTH = 0
        ramvec : ORIGIN = 0x00000000, LENGTH = 0x00002000
        ramvec : ORIGIN = 0x00000000, LENGTH = 0x00002000
        ram    : ORIGIN = 0x00020400, LENGTH = 0x00400000 - 0x00020400
        ram    : ORIGIN = 0x00020400, LENGTH = 0x00400000 - 0x00020400
        eram   : ORIGIN = 0x00400000, LENGTH = 0
        eram   : ORIGIN = 0x00800000, LENGTH = 0
        initrd : ORIGIN = 0x00700000, LENGTH = 0x00100000
        initrd : ORIGIN = 0x00700000, LENGTH = 0x00400000
        }
        }
 
 
SECTIONS
SECTIONS
{
{
        .ramvec :
        .ramvec :
        {
        {
 
        __ramvec = . ;
        __ramvec_start = . ;
        __ramvec_start = . ;
        *(.ramvec)
        *(.ramvec)
        __ramvec_end = . ;
        __ramvec_end = . ;
        } > ramvec
        } > ramvec
 
 
        .romvec :
        .romvec :
        {
        {
        __romvec = . ;
        __romvec = . ;
        } > romvec
        } > romvec
 
 
        .text :
        .text :
        {
        {
        __ramstart = . ;
        __ramstart = . ;
        text_start = . ;
        text_start = . ;
        *(.text)
        *(.text)
        __etext = . ;
 
        ___data_rom_start = ALIGN ( 4 ) ;
        ___data_rom_start = ALIGN ( 4 ) ;
        } > ram
        } > ram
        .data ALIGN(4) :
 
 
        .rodata :
 
        {
 
        *(.rodata)
 
        *(.rodata.str1.1)
 
        __etext = . ;
 
        } > ram
 
 
 
        .data :
        {
        {
        __sdata = . ;
        __sdata = . ;
        ___data_start = . ;
        ___data_start = . ;
        *(.data)
        *(.data)
        __edata = . ;
        __edata = . ;
        __end_data = . ;
        __end_data = . ;
        edata = ALIGN( 0x10 ) ;
        edata = ALIGN( 0x10 ) ;
        } > ram
        } > ram
        .bss ALIGN (0x10):
 
 
        .bss :
        {
        {
        __sbss = ALIGN( 0x10 ) ;
        __sbss = ALIGN( 0x10 ) ;
        ___bss_start = ALIGN( 0x10 ) ;
        ___bss_start = ALIGN( 0x10 ) ;
        __data_end = ALIGN( 0x10 ) ;
        __data_end = ALIGN( 0x10 ) ;
        *(.bss)
        *(.bss)
Line 48... Line 59...
        __ebss = . ;
        __ebss = . ;
        ___bss_end = . ;
        ___bss_end = . ;
        end = ALIGN( 0x10 ) ;
        end = ALIGN( 0x10 ) ;
        __end = ALIGN( 0x10 ) ;
        __end = ALIGN( 0x10 ) ;
        } > ram
        } > ram
 
 
        .eram :
        .eram :
        {
        {
        __ramend = . ;
        __ramend = . ;
        } > eram
        } > eram
 
 
        .initrd :
        .initrd :
        {
        {
        __initrd_start = . ;
        __initrd_start = . ;
        *(.initrd)
        *(.initrd)
        __initrd_end = . ;
        __initrd_end = . ;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.