diff options
author | Stefan Roese <sr@denx.de> | 2005-10-08 10:19:07 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2005-10-08 10:19:07 +0200 |
commit | c29ab9d71d229ee94e8263845ea54222005e3880 (patch) | |
tree | 60bf999c52c3e7bce7320d4ac82a7a0d27c3096c /include/configs/HH405.h | |
parent | bccae9039e59ac09a776429119389a6a4e679fd7 (diff) | |
download | u-boot-imx-c29ab9d71d229ee94e8263845ea54222005e3880.zip u-boot-imx-c29ab9d71d229ee94e8263845ea54222005e3880.tar.gz u-boot-imx-c29ab9d71d229ee94e8263845ea54222005e3880.tar.bz2 |
Fix gzip bmp support (test if malloc fails, warning when truncated).
Increase CFG_VIDEO_LOGO_MAX_SIZE on HH405 board.
Patch by Stefan Roese, 08 Oct 2005
Diffstat (limited to 'include/configs/HH405.h')
-rw-r--r-- | include/configs/HH405.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/configs/HH405.h b/include/configs/HH405.h index dd29be0..131c215 100644 --- a/include/configs/HH405.h +++ b/include/configs/HH405.h @@ -88,7 +88,7 @@ #define CFG_CONSOLE_IS_IN_ENV #define CONFIG_SPLASH_SCREEN #define CONFIG_VIDEO_BMP_GZIP /* gzip compressed bmp images */ -#define CFG_VIDEO_LOGO_MAX_SIZE (1024*1024) /* for decompressed img */ +#define CFG_VIDEO_LOGO_MAX_SIZE (2 << 20) /* for decompressed img */ #define ADD_BMP_CMD CFG_CMD_BMP #else @@ -308,7 +308,7 @@ #define CFG_FLASH_BASE 0xFFF80000 #define CFG_MONITOR_BASE TEXT_BASE #define CFG_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Monitor */ -#define CFG_MALLOC_LEN (2 * 1024*1024) /* Reserve 2 MB for malloc() */ +#define CFG_MALLOC_LEN (4 << 20) /* Reserve 4 MB for malloc() */ #if (CFG_MONITOR_BASE < FLASH_BASE0_PRELIM) # define CFG_RAMBOOT 1 @@ -409,8 +409,6 @@ #define CFG_LCD_SMALL_MEM 0xF1400000 /* Epson S1D13704 Mem Base Address */ #define CFG_LCD_SMALL_REG 0xF140FFE0 /* Epson S1D13704 Reg Base Address */ -#define CFG_LCD_LOGO_MAX_SIZE (1024*1024) - /*----------------------------------------------------------------------- * Universal Interrupt Controller (UIC) Setup */ |