Hi @Jack-Cha ,
The default logo freescale.bmp is located in tools/logos/,
The Makefile in thie folder will decide which bmp would be compiled:
# Generic logo
ifeq ($(LOGO_BMP),)
LOGO_BMP= $(srctree)/$(src)/logos/denx.bmp
# Use board logo and fallback to vendor
ifneq ($(wildcard $(srctree)/$(src)/logos/$(BOARD).bmp),)
LOGO_BMP= $(srctree)/$(src)/logos/$(BOARD).bmp
else
ifneq ($(wildcard $(srctree)/$(src)/logos/$(VENDOR).bmp),)
LOGO_BMP= $(srctree)/$(src)/logos/$(VENDOR).bmp
endif
endif
You can try adding an image renamed to that same file. And if the timing is not as desired you can add a delay in or after splash_delay. If this has been done and the results are still not as desired, unfortunately we don't have a solution for displaying logo from uboot until the Android logo is displayed.
Best regards,
Hector.