source: branches/fault_tolerance/softs/tests_cc_vcache/common/ldscript @ 724

Last change on this file since 724 was 724, checked in by cfuguet, 10 years ago

branches/fault_tolerance:

  • Recreating fault_tolerance branch with all new modifications from trunk.
  • Introducing distributed boot rom in the tsar_generic_iob platform
  • Property svn:executable set to *
File size: 1.4 KB
Line 
1/*
2 *
3 * SOCLIB_GPL_HEADER_BEGIN
4 *
5 * This file is part of SoCLib, GNU GPLv2.
6 *
7 * SoCLib is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * SoCLib is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with SoCLib; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301, USA.
20 *
21 * SOCLIB_GPL_HEADER_END
22 *
23 * Copyright (c) UPMC, Lip6, SoC
24 *         Nicolas Pouillon <nipo@ssji.net>, 2006-2007
25 *
26 * Maintainers: abdelmalek.si-merabet@lip6.fr
27 */
28
29ENTRY(_start)
30
31SECTIONS
32{
33   . = 0xbfc00000;
34   .text : {
35      *(.text)
36   }
37   .rodata : {
38      *(.rodata)
39      . = ALIGN(4);
40   }
41   . = 0x00000000;
42   .data  : {
43      *(.data)
44   }
45   .sdata : {
46      *(.lit8)
47      *(.lit4)
48      *(.sdata)
49   }
50   _gp = .;
51   . = ALIGN(4);
52   _edata = .;
53   .sbss  : {
54      *(.sbss)
55      *(.scommon)
56   }
57   .bss   : {
58      *(.bss)
59      *(COMMON)
60   }
61   . = ALIGN(4);
62   _end = .;
63   _heap = .;
64   _stack = 0x00400000-16;
65}
Note: See TracBrowser for help on using the repository browser.