Add the devicetree files for the GPU on Sun devices. Change-Id: Iaf7a19eb5e2c6c215e838ae1bfa3b01916c804d9 Signed-off-by: Hareesh Gundu <quic_hareeshg@quicinc.com>
13 lines
260 B
Makefile
13 lines
260 B
Makefile
ifeq ($(CONFIG_ARCH_PINEAPPLE), y)
|
|
dtbo-y += gpu/pineapple-gpu.dtbo \
|
|
gpu/pineapple-v2-gpu.dtbo
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_SUN), y)
|
|
dtbo-y += gpu/sun-gpu.dtbo
|
|
endif
|
|
|
|
always-y := $(dtb-y) $(dtbo-y)
|
|
subdir-y := $(dts-dirs)
|
|
clean-files := *.dtb *.dtbo
|