diff options
author | Wolfgang Denk <wd@denx.de> | 2011-10-25 09:48:16 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-11-04 22:06:37 +0100 |
commit | 544aa66a6695790227613bf32bdf672143d5a1ad (patch) | |
tree | 4cb96a479c660d70129bfb9324b4959700cf38e1 | |
parent | 6ac1c9033a15eee0706a02a649e4180634c2d4d7 (diff) | |
download | u-boot-imx-544aa66a6695790227613bf32bdf672143d5a1ad.zip u-boot-imx-544aa66a6695790227613bf32bdf672143d5a1ad.tar.gz u-boot-imx-544aa66a6695790227613bf32bdf672143d5a1ad.tar.bz2 |
qong: enable support for compressed images
- enable support for unzip command
- enable support for compressed bitmap images
We also have to increase the malloc() arena a bit for this.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
-rw-r--r-- | include/configs/qong.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/configs/qong.h b/include/configs/qong.h index 4e6bf3b..3346802 100644 --- a/include/configs/qong.h +++ b/include/configs/qong.h @@ -43,7 +43,7 @@ /* * Size of malloc() pool */ -#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1024 * 1024) +#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1536 * 1024) /* * Hardware drivers @@ -92,6 +92,8 @@ #define CONFIG_SPLASH_SCREEN #define CONFIG_CMD_BMP #define CONFIG_BMP_16BPP +#define CONFIG_VIDEO_BMP_GZIP +#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (512 << 10) /* USB */ #define CONFIG_CMD_USB @@ -137,6 +139,7 @@ #define CONFIG_CMD_PING #define CONFIG_CMD_SETEXPR #define CONFIG_CMD_SPI +#define CONFIG_CMD_UNZIP #define CONFIG_BOARD_LATE_INIT |