mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 09:48:16 +00:00
common: Makefile: Add rule to compile splash and splash_source at SPL
To enable splash screen and loading bmp from boot media, add rules to compile splash.c and splash_source.c at SPL stage only when CONFIG_SPL_SPLASH_SCREEN and CONFIG_SPL_SPLASH_SOURCE are defined. Signed-off-by: Nikhil M Jain <n-jain1@ti.com> Reviewed-by: Devarsh Thakkar <devarsht@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
2e72e4ec84
commit
a8bca7ea61
1 changed files with 2 additions and 0 deletions
|
@ -56,6 +56,8 @@ obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
|
||||||
obj-$(CONFIG_SPL_USB_HOST) += usb.o usb_hub.o
|
obj-$(CONFIG_SPL_USB_HOST) += usb.o usb_hub.o
|
||||||
obj-$(CONFIG_SPL_USB_STORAGE) += usb_storage.o
|
obj-$(CONFIG_SPL_USB_STORAGE) += usb_storage.o
|
||||||
obj-$(CONFIG_SPL_MUSB_NEW) += usb.o
|
obj-$(CONFIG_SPL_MUSB_NEW) += usb.o
|
||||||
|
obj-$(CONFIG_SPL_SPLASH_SCREEN) += splash.o
|
||||||
|
obj-$(CONFIG_SPL_SPLASH_SOURCE) += splash_source.o
|
||||||
endif # CONFIG_SPL_BUILD
|
endif # CONFIG_SPL_BUILD
|
||||||
|
|
||||||
#others
|
#others
|
||||||
|
|
Loading…
Reference in a new issue