diff options
author | Nikhil M Jain <n-jain1@ti.com> | 2023-04-20 17:41:01 +0530 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2023-04-24 21:37:45 +0200 |
commit | e3357a9e036f92ca389f8c3cfa3ed335b2f798e1 (patch) | |
tree | d5e7475cd79141efe2a4341b72e733aad73eec6e | |
parent | 54929ecdd2141f23732d5bc8de7fa62d1d2b4d02 (diff) | |
download | u-boot-e3357a9e036f92ca389f8c3cfa3ed335b2f798e1.tar.gz u-boot-e3357a9e036f92ca389f8c3cfa3ed335b2f798e1.tar.bz2 u-boot-e3357a9e036f92ca389f8c3cfa3ed335b2f798e1.zip |
drivers: Makefile: Add rule to compile video driver
Compile video driver at SPL using CONFIG_SPL_VIDEO.
Signed-off-by: Nikhil M Jain <n-jain1@ti.com>
Reviewed-by: Devarsh Thakkar <devarsht@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org> # qemu-x86_64
-rw-r--r-- | drivers/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 58be410135..928a8b0e9d 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -61,6 +61,7 @@ obj-$(CONFIG_SPL_USB_HOST) += usb/host/ obj-$(CONFIG_SPL_SATA) += ata/ scsi/ obj-$(CONFIG_SPL_LEGACY_BLOCK) += block/ obj-$(CONFIG_SPL_THERMAL) += thermal/ +obj-$(CONFIG_SPL_VIDEO) +=video/ endif endif |