diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-19 18:02:43 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-10-25 22:07:18 -0400 |
commit | 58d7570cd3c5e9b215b6358f293872b66ac2a1cb (patch) | |
tree | fc8d28175b32bc1216a5f77deae393d1b7b7557a /include | |
parent | 36cf8cb456203886feb7d458f095a9aa49b2f9e9 (diff) |
Blackfin: adi boards: set compiled size limits
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/bf548-ezkit.h | 1 | ||||
-rw-r--r-- | include/configs/bfin_adi_common.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/configs/bf548-ezkit.h b/include/configs/bf548-ezkit.h index 4412177ff09..1c035cfcada 100644 --- a/include/configs/bf548-ezkit.h +++ b/include/configs/bf548-ezkit.h @@ -180,6 +180,7 @@ * Misc Settings */ #define CONFIG_BOARD_EARLY_INIT_F +#define CONFIG_BOARD_SIZE_LIMIT $$(( 512 * 1024 )) #define CONFIG_RTC_BFIN #define CONFIG_UART_CONSOLE 1 #define CONFIG_BFIN_SPI_IMG_SIZE 0x50000 diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h index 608788a66f9..03c64339d62 100644 --- a/include/configs/bfin_adi_common.h +++ b/include/configs/bfin_adi_common.h @@ -295,6 +295,9 @@ /* * Misc Settings */ +#ifndef CONFIG_BOARD_SIZE_LIMIT +# define CONFIG_BOARD_SIZE_LIMIT $$(( 256 * 1024 )) +#endif #define CONFIG_BFIN_SPI_GPIO_CS /* Only matters if BFIN_SPI is enabled */ #define CONFIG_LZMA |