~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/plugins/scriptedwizard/resources/arm/files/phyCORE-AT91M55800/ld/targetRAM_512kB.ld

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    linker script for phyCORE_AT91M55800
 
3
    available RAM: 512 kB
 
4
 */
 
5
 
 
6
ENTRY(reset_vector)
 
7
 
 
8
MEMORY
 
9
{
 
10
    ram1 : ORIGIN = 0x00000000, LENGTH = 0x2000
 
11
    ram2 : ORIGIN = 0x04040000, LENGTH = 0x040000
 
12
    rom  : ORIGIN = 0x04000000, LENGTH = 0x040000
 
13
}
 
14
 
 
15
SECTIONS
 
16
{
 
17
 
 
18
    PROVIDE (PxPrepareInit = 0);
 
19
 
 
20
    .rom_vectors :
 
21
    {
 
22
      KEEP (*(.vectors))
 
23
    } > rom 
 
24
    .text :
 
25
    {
 
26
      stext = ABSOLUTE(.); PROVIDE (__stext = ABSOLUTE(.));
 
27
      *(.text*)
 
28
      /* C++ stuff. */
 
29
      *(.gcc_except_table)
 
30
      *(.eh_frame)
 
31
      /* .gnu.warning sections are handled specially by elf32.em.  */
 
32
      *(.gnu.warning)
 
33
      *(.gnu.linkonce.t*)
 
34
      *(.init)
 
35
      *(.glue_7)
 
36
      *(.glue_7t)
 
37
      *(.fixup)
 
38
      *(.got)
 
39
      *(.fini)
 
40
    } > rom  etext = .; PROVIDE (__etext = .); 
 
41
    .rodata :
 
42
    {
 
43
       *(.rodata*) *(.rodata.*) *(.toc) *(.gnu.linkonce.r*)
 
44
      . = ALIGN (4);
 
45
    } > rom  
 
46
    .rodata1 :
 
47
    {
 
48
       *(.rodata1)
 
49
      . = ALIGN (4);
 
50
    } > rom  
 
51
 
 
52
    .jcr :
 
53
    {
 
54
       KEEP (*(.jcr))
 
55
      . = ALIGN (4);
 
56
    } > rom
 
57
 
 
58
    .data :
 
59
    {
 
60
      __ram_data_start = ABSOLUTE (.);
 
61
      *(.data*) *(.gnu.linkonce.d*)
 
62
      *(.data1)   _GOT1_START_ = ABSOLUTE (.);
 
63
      *(.got1) _GOT1_END_ = ABSOLUTE (.); _GOT2_START_ = ABSOLUTE (.);
 
64
      *(.got2) _GOT2_END_ = ABSOLUTE (.);
 
65
      . = ALIGN (4);
 
66
      __DEVTAB__ = ABSOLUTE (.);
 
67
      KEEP (*(SORT (.devtab*))) __DEVTAB_END__ = ABSOLUTE (.);
 
68
      __NETDEVTAB__ = ABSOLUTE (.);
 
69
      KEEP (*(SORT (.netdevtab*))) __NETDEVTAB_END__ = ABSOLUTE (.);
 
70
      __CTOR_LIST__ = ABSOLUTE (.);
 
71
      KEEP (*(SORT (.ctors*))) __CTOR_END__ = ABSOLUTE (.);
 
72
      __DTOR_LIST__ = ABSOLUTE (.);
 
73
      KEEP (*(SORT (.dtors*))) __DTOR_END__ = ABSOLUTE (.);
 
74
      *(.dynamic)
 
75
      *(.sdata*)
 
76
      *(.sbss*)
 
77
    } > ram2 AT> rom
 
78
    __rom_data_start = LOADADDR (.data);
 
79
    __ram_data_end = .; PROVIDE (__ram_data_end = .);
 
80
    _edata = .; PROVIDE (edata = .); PROVIDE (__rom_data_end = LOADADDR (.data) + SIZEOF(.data));
 
81
 
 
82
    .bss :
 
83
    {
 
84
      . = ALIGN (4);
 
85
      __bss_start = ABSOLUTE (.);
 
86
      *(.scommon)
 
87
      *(.dynbss)
 
88
      *(.bss*) *(.gnu.linkonce.b*)
 
89
      *(COMMON)
 
90
      __bss_end = ABSOLUTE (.);
 
91
    } > ram2  
 
92
    . = ALIGN(4);
 
93
    _end = .; PROVIDE (end = .); PROVIDE (__end__ = .); PROVIDE (__HEAP = .);
 
94
    PROVIDE (__heap_end__ = . + 0x8000); PROVIDE (__HEAP_END = . + 0x8000);
 
95
 
 
96
    .debug_aranges  0 : { *(.debug_aranges) }
 
97
    .debug_pubnames 0 : { *(.debug_pubnames) }
 
98
    .debug_info     0 : { *(.debug_info) }
 
99
    .debug_abbrev   0 : { *(.debug_abbrev) }
 
100
    .debug_line     0 : { *(.debug_line) }
 
101
    .debug_frame    0 : { *(.debug_frame) }
 
102
    .debug_str      0 : { *(.debug_str) }
 
103
    .debug_loc      0 : { *(.debug_loc) }
 
104
    .debug_macinfo  0 : { *(.debug_macinfo) } 
 
105
}