summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
Diffstat (limited to 'board')
-rw-r--r--board/atmel/atstk1000/u-boot.lds (renamed from board/atmel/atstk1000/u-boot.lds.S)10
1 files changed, 4 insertions, 6 deletions
diff --git a/board/atmel/atstk1000/u-boot.lds.S b/board/atmel/atstk1000/u-boot.lds
index d46b82c..ef89ea4 100644
--- a/board/atmel/atstk1000/u-boot.lds.S
+++ b/board/atmel/atstk1000/u-boot.lds
@@ -20,27 +20,25 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
-#include <config.h>
-
OUTPUT_FORMAT("elf32-avr32", "elf32-avr32", "elf32-avr32")
OUTPUT_ARCH(avr32)
ENTRY(_start)
SECTIONS
{
- . = CFG_FLASH_BASE;
+ . = 0;
_text = .;
.text : {
*(.text)
*(.text.*)
}
- . = ALIGN(CFG_ICACHE_LINESZ);
+ . = ALIGN(32);
__flashprog_start = .;
.flashprog : {
*(.flashprog)
}
- . = ALIGN(CFG_ICACHE_LINESZ);
+ . = ALIGN(32);
__flashprog_end = .;
. = ALIGN(8);
@@ -51,7 +49,7 @@ SECTIONS
_etext = .;
__data_lma = ALIGN(8);
- . = CFG_INTRAM_BASE;
+ . = 0x24000000;
_data = .;
.data : AT(__data_lma) {
*(.data)