source: trunk/softs/tsar_boot/conf/platform_fpga_de2-115/ldscript @ 563

Last change on this file since 563 was 563, checked in by bouyer, 10 years ago

rename data section to bss, and mark it noload.

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