source: umon/ports/beagleboneblack/BEAGLEBONEBLACK_boot.ldt @ c900821

Last change on this file since c900821 was 3f3cc2b, checked in by Jarielle Catbagan <jcatbagan93@…>, on 06/20/15 at 02:57:52

Updated header comment in BEAGLEBONEBLACK_boot.ldt

  • Property mode set to 100644
File size: 752 bytes
Line 
1/* BEAGLEBONEBLACK_boot.ld:
2 *
3 * This is the memory map file used for the boot version of Umon.  The only value
4 * that should be considered adjustable here is the base address of the 'dram'
5 * memory block.
6 */
7
8MEMORY
9{
10        rom :   org = ROMBASE,  len = ROMLEN
11        dram :  org = DRAMBASE, len = DRAMLEN
12}
13
14SECTIONS
15{
16        .text   :
17        {
18                boot_base = .;
19                rom_reset.o(.text)
20                *(.glue_7t)
21                *(.glue_7)
22        } >rom
23
24        .data   :
25        {
26                *(.data)
27        } >rom
28
29        .sdata  :
30        {
31                *(.sdata)
32        } >rom
33
34        .sdata2 :
35        {
36                *(.sdata2)
37        } >rom
38
39        .rodata :
40        {
41                *(.rodata)
42                *(.rodata.str1.4)
43        } >rom
44
45        .got    :
46        {
47                *(.got)
48        } >rom
49
50        .bss    :
51        {
52                bss_start = .;
53                atag_space = .;
54                . += ATAGSIZE;
55                end_atag_space = .;
56                *(.bss) *(COMMON)
57        } >dram
58
59        .sbss   :
60        {
61                *(.sbss)
62                bss_end = .;
63        } >dram
64}
Note: See TracBrowser for help on using the repository browser.