diff options
| -rw-r--r-- | board/atmel/at91sam9m10g45ek/config.mk | 1 | ||||
| -rw-r--r-- | board/atmel/at91sam9x5ek/config.mk | 1 | ||||
| -rw-r--r-- | include/configs/at91sam9m10g45ek.h | 2 | ||||
| -rw-r--r-- | include/configs/at91sam9x5ek.h | 2 | 
4 files changed, 4 insertions, 2 deletions
| diff --git a/board/atmel/at91sam9m10g45ek/config.mk b/board/atmel/at91sam9m10g45ek/config.mk deleted file mode 100644 index 9d3c5ae27..000000000 --- a/board/atmel/at91sam9m10g45ek/config.mk +++ /dev/null @@ -1 +0,0 @@ -CONFIG_SYS_TEXT_BASE = 0x73f00000 diff --git a/board/atmel/at91sam9x5ek/config.mk b/board/atmel/at91sam9x5ek/config.mk deleted file mode 100644 index 6589a12a9..000000000 --- a/board/atmel/at91sam9x5ek/config.mk +++ /dev/null @@ -1 +0,0 @@ -CONFIG_SYS_TEXT_BASE = 0x26f00000 diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h index 2aea55567..fc4ecec7a 100644 --- a/include/configs/at91sam9m10g45ek.h +++ b/include/configs/at91sam9m10g45ek.h @@ -13,6 +13,8 @@  #include <asm/hardware.h> +#define CONFIG_SYS_TEXT_BASE		0x73f00000 +  #define CONFIG_AT91_LEGACY  #define CONFIG_ATMEL_LEGACY		/* required until (g)pio is fixed */ diff --git a/include/configs/at91sam9x5ek.h b/include/configs/at91sam9x5ek.h index c799955ba..4a2ac9aab 100644 --- a/include/configs/at91sam9x5ek.h +++ b/include/configs/at91sam9x5ek.h @@ -11,6 +11,8 @@  #include <asm/hardware.h> +#define CONFIG_SYS_TEXT_BASE		0x26f00000 +  /* ARM asynchronous clock */  #define CONFIG_SYS_AT91_SLOW_CLOCK	32768  #define CONFIG_SYS_AT91_MAIN_CLOCK	12000000	/* 12 MHz crystal */ |