source: umon/ports/beagleboneblack/BEAGLEBONEBLACK_ramtst.ldt @ 9049385

Last change on this file since 9049385 was 9049385, checked in by Jarielle Catbagan <jcatbagan93@…>, on 06/19/15 at 21:32:48

Renamed linker script templates in BBB port to match BBB target

  • Renamed CSB740_boot.ldt -> BEAGLEBONEBLACK_boot.ldt
  • Renamed CSB740_ramtst.ldt -> BEAGLEBONEBLACK_ramtst.ldt
  • Property mode set to 100644
File size: 582 bytes
Line 
1etheraddr               = MACADDRBASE;
2alt_tfsdevtbl_base      = ALTTFSDEVTBLBASE;
3
4MEMORY
5{
6        rom :   org = RAMTSTROMBASE,    len = RAMTSTROMLEN
7}
8
9SECTIONS
10{
11        .text   :
12        {
13                boot_base = .;
14                ram_reset.o(.text)
15                *(.glue_7t)
16                *(.glue_7)
17        } >rom
18
19        .data   :
20        {
21                *(.data)
22        } >rom
23
24        .sdata  :
25        {
26                *(.sdata)
27        } >rom
28
29        .sdata2 :
30        {
31                *(.sdata2)
32        } >rom
33
34        .rodata :
35        {
36                *(.rodata)
37        *(.rodata.str1.4)
38        } >rom
39
40        .got    :
41        {
42                *(.got)
43        } >rom
44
45        .bss    :
46        {
47                bss_start = .;
48                atag_space = .;
49                . += ATAGSIZE;
50                end_atag_space = .;
51                *(.bss) *(COMMON)
52        } >rom
53
54        .sbss   :
55        {
56                *(.sbss)
57                bss_end = .;
58        } >rom
59}
Note: See TracBrowser for help on using the repository browser.