diff options
Diffstat (limited to 'include/configs/trab.h')
-rw-r--r-- | include/configs/trab.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/configs/trab.h b/include/configs/trab.h index 95ee37e..e9ba90f 100644 --- a/include/configs/trab.h +++ b/include/configs/trab.h @@ -26,10 +26,15 @@ #ifndef __CONFIG_H #define __CONFIG_H -#ifdef CONFIG_OLD_VERSION /* Old configuration: */ -#define CONFIG_RAM_16MB /* 16 MB SDRAM */ +/* + * Default configuration is with 8 MB Flash, 32 MB RAM + */ +#if (!defined(CONFIG_FLASH_8MB)) && (!defined(CONFIG_FLASH_16MB)) +# define CONFIG_FLASH_8MB /* 8 MB Flash */ +#endif +#if (!defined(CONFIG_RAM_16MB)) && (!defined(CONFIG_RAM_32MB)) +# define CONFIG_RAM_32MB /* 32 MB SDRAM */ #endif -#define CONFIG_FLASH_8MB /* 8 MB Flash */ /* * If we are developing, we might want to start armboot from ram |