Skip to content
Snippets Groups Projects
Commit 11709e7a authored by Hannes Petermaier's avatar Hannes Petermaier Committed by Tom Rini
Browse files

board/BuR/common: Add support for displaying BMP on LCD


Customer wants to display some logo very quickly after power on, so we support
from now loading a compressed bmp.gz to the screen.

Signed-off-by: default avatarHannes Petermaier <oe5hpm@oevsv.at>
parent 8f5c50f5
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,13 @@ ...@@ -30,6 +30,13 @@
"setenv stdout nc;setenv stdin nc;setenv stderr nc\0" "setenv stdout nc;setenv stdin nc;setenv stderr nc\0"
#define CONFIG_CMD_TIME #define CONFIG_CMD_TIME
#define CONFIG_VIDEO_BMP_GZIP
#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (1366*767*4)
#define CONFIG_CMD_UNZIP
#define CONFIG_CMD_BMP
#define CONFIG_BMP_24BMP
#define CONFIG_BMP_32BPP
#define CONFIG_SYS_GENERIC_BOARD #define CONFIG_SYS_GENERIC_BOARD
#define CONFIG_AM33XX #define CONFIG_AM33XX
...@@ -130,7 +137,7 @@ ...@@ -130,7 +137,7 @@
* we are on so we do not need to rely on the command prompt. We set a * we are on so we do not need to rely on the command prompt. We set a
* console baudrate of 115200 and use the default baud rate table. * console baudrate of 115200 and use the default baud rate table.
*/ */
#define CONFIG_SYS_MALLOC_LEN (1024 << 10) #define CONFIG_SYS_MALLOC_LEN (5120 << 10)
#define CONFIG_SYS_HUSH_PARSER #define CONFIG_SYS_HUSH_PARSER
#define CONFIG_SYS_PROMPT "U-Boot (BuR V2.0)# " #define CONFIG_SYS_PROMPT "U-Boot (BuR V2.0)# "
#define CONFIG_SYS_CONSOLE_INFO_QUIET #define CONFIG_SYS_CONSOLE_INFO_QUIET
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment