summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiu Ying <Ying.Liu@freescale.com>2012-07-31 15:31:09 +0800
committerJustin Waters <justin.waters@timesys.com>2012-09-12 11:05:53 -0400
commit90268b36596a3a778a526c83b414059590cf44ab (patch)
tree473f29b05df6dd2c0cf52ac17ad6190d377a3ace
parent3426cba5be23a6d3d3d940055d0b0254fd5e8c03 (diff)
ENGR00218915-2 MX6 SabreSD:Use new 8bit bmp boot logo
This patch changes to use new 8bit 600x400 bmp boot logo. As this boot logo has black background and white words, the user experience will be better. Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
-rw-r--r--board/freescale/mx6q_sabresd/mx6q_sabresd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/board/freescale/mx6q_sabresd/mx6q_sabresd.c b/board/freescale/mx6q_sabresd/mx6q_sabresd.c
index 09b8f1de88..274f0c8d28 100644
--- a/board/freescale/mx6q_sabresd/mx6q_sabresd.c
+++ b/board/freescale/mx6q_sabresd/mx6q_sabresd.c
@@ -87,8 +87,8 @@ static enum boot_device boot_dev;
#define USB_H1_POWER IMX_GPIO_NR(1, 29)
#ifdef CONFIG_VIDEO_MX5
-extern unsigned char fsl_bmp_600x400[];
-extern int fsl_bmp_600x400_size;
+extern unsigned char fsl_bmp_reversed_600x400[];
+extern int fsl_bmp_reversed_600x400_size;
extern int g_ipu_hw_rev;
#if defined(CONFIG_BMP_8BPP)
@@ -1432,10 +1432,10 @@ void setup_splash_image(void)
#if defined(CONFIG_ARCH_MMU)
addr = ioremap_nocache(iomem_to_phys(addr),
- fsl_bmp_600x400_size);
+ fsl_bmp_reversed_600x400_size);
#endif
- memcpy((char *)addr, (char *)fsl_bmp_600x400,
- fsl_bmp_600x400_size);
+ memcpy((char *)addr, (char *)fsl_bmp_reversed_600x400,
+ fsl_bmp_reversed_600x400_size);
}
}
#endif