source: trunk/softs/tsar_boot/conf/platform_tsar_generic_iob/ldscript @ 731

Last change on this file since 731 was 731, checked in by alain, 10 years ago

Update ldscript file for platform tsar_generic_iob

File size: 731 bytes
Line 
1/**********************************************************
2  File   : ldscript
3  Author : Cesar Fuguet
4  Date   : June 2011
5**********************************************************/
6
7/* Definition of the base address for code segment */
8
9seg_reset_code_base     = 0xBFC00000;
10
11seg_reset_stack_base    = 0x000A0000;
12seg_reset_stack_size    = 0x00050000;
13
14/* Grouping sections into segments */
15
16ENTRY(reset)
17
18SECTIONS
19{
20    . = seg_reset_code_base;
21    .text :
22    {
23        *(.reset)
24        *(.rodata)
25        *(.rodata.*)
26        . = ALIGN(0x4);
27        dtb_addr = .;
28        INCLUDE "build/platform.ld";
29    }
30
31    . = seg_reset_stack_base;
32    .bss ALIGN(0x4) (NOLOAD) :
33    {
34        *(.data)
35        *(.bss)
36    }
37}
Note: See TracBrowser for help on using the repository browser.