dts: Makefile: Compile the vendor directory

Add support to compile the device tree files for a target.

Change-Id: Ida9289d16c0226ab72418f5df641c3081a38c299
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
This commit is contained in:
Guru Das Srinagesh 2022-02-10 15:57:23 -08:00
parent 15cb0c7276
commit 33bb29c4f8

View File

@ -30,3 +30,9 @@ subdir-y += synaptics
subdir-y += ti
subdir-y += toshiba
subdir-y += xilinx
dtstree := $(srctree)/$(src)
vendor := $(dtstree)/vendor
ifneq "$(wildcard $(vendor)/Makefile)" ""
subdir-y += vendor
endif