diff options
Diffstat (limited to 'cpu/74xx_7xx/start.S')
-rw-r--r-- | cpu/74xx_7xx/start.S | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpu/74xx_7xx/start.S b/cpu/74xx_7xx/start.S index 7d7a493fea6..e8854f02077 100644 --- a/cpu/74xx_7xx/start.S +++ b/cpu/74xx_7xx/start.S @@ -42,7 +42,10 @@ #include <asm/cache.h> #include <asm/mmu.h> +#if !defined(CONFIG_DB64360) && \ + !defined(CONFIG_DB64460) #include <galileo/gt64260R.h> +#endif #ifndef CONFIG_IDENT_STRING #define CONFIG_IDENT_STRING "" @@ -749,7 +752,9 @@ in_ram: bne 5b 6: mr r3, r10 /* Destination Address */ -#ifdef CONFIG_AMIGAONEG3SE +#if defined(CONFIG_AMIGAONEG3SE) || \ + defined(CONFIG_DB64360) || \ + defined(CONFIG_DB64460) mr r4, r9 /* Use RAM copy of the global data */ #endif bl after_reloc |