Enable compilation of devicetree files in opensource dsp-devicetree Change-Id: I399f8f8c09c9d2b4d537316e1dd8706be25d0681 Signed-off-by: Anirudh Raghavendra <quic_araghave@quicinc.com>
16 lines
295 B
Makefile
16 lines
295 B
Makefile
ifeq ($(CONFIG_ARCH_SUN), y)
|
|
ifeq ($(CONFIG_ARCH_QTI_VM), y)
|
|
dtbo-y += sun/sun-dsp-trustedvm.dtbo
|
|
else
|
|
dtbo-y += sun/sun-dsp.dtbo
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_NIOBE), y)
|
|
dtbo-y += niobe/niobe-dsp.dtbo
|
|
endif
|
|
|
|
always-y := $(dtb-y) $(dtbo-y)
|
|
subdir-y := $(dts-dirs)
|
|
clean-files := *.dtb *.dtbo
|