bios/linker.ld: flash -> rom
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Tue, 28 May 2013 14:15:17 +0000 (16:15 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Tue, 28 May 2013 14:15:17 +0000 (16:15 +0200)
software/bios/linker.ld

index f1d4cc1b450f8173df997bfe6e09558b54df82b8..955d9e0b6bd7b2619354f1aeaa6b677beffa3046 100644 (file)
@@ -4,8 +4,8 @@ ENTRY(_start)
 __DYNAMIC = 0;
 
 MEMORY {
-       flash : ORIGIN = 0x00860000, LENGTH = 0x20000 /* 128K */
-       sram  : ORIGIN = 0x10000000, LENGTH = 0x01000 /* 4K */
+       rom  : ORIGIN = 0x00860000, LENGTH = 0x20000 /* 128K */
+       sram : ORIGIN = 0x10000000, LENGTH = 0x01000 /* 4K */
 }
 
 SECTIONS
@@ -15,7 +15,7 @@ SECTIONS
                _ftext = .;
                *(.text .stub .text.* .gnu.linkonce.t.*)
                _etext = .;
-       } > flash
+       } > rom
 
        .rodata :
        {
@@ -24,7 +24,7 @@ SECTIONS
                *(.rodata .rodata.* .gnu.linkonce.r.*)
                *(.rodata1)
                _erodata = .;
-       } > flash
+       } > rom
 
        /* We shouldn't have a .data section, but the GNU crapchain whines if we don't */
        .data :
@@ -36,7 +36,7 @@ SECTIONS
                _gp = ALIGN(16);
                *(.sdata .sdata.* .gnu.linkonce.s.*)
                _edata = .;
-       } > flash
+       } > rom
 
        .bss :
        {