mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-12 15:44:01 +08:00
650a2b29cd
An img directory exists for the Pistchio SoC device tree but the
directory itself isn't in the dts Makefile meaning the dtbs never get
built.
Fixes: daa10170da
("MIPS: DTS: img: add device tree for Marduk board")
Signed-off-by: Ian Pozella <Ian.Pozella@imgtec.com>
Reviewed-by: Rahul Bedarkar <Rahul.Bedarkar@imgtec.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/15309/
Signed-off-by: James Hogan <james.hogan@imgtec.com>
21 lines
477 B
Makefile
21 lines
477 B
Makefile
dts-dirs += brcm
|
|
dts-dirs += cavium-octeon
|
|
dts-dirs += img
|
|
dts-dirs += ingenic
|
|
dts-dirs += lantiq
|
|
dts-dirs += mti
|
|
dts-dirs += netlogic
|
|
dts-dirs += pic32
|
|
dts-dirs += qca
|
|
dts-dirs += ralink
|
|
dts-dirs += xilfpga
|
|
|
|
obj-y := $(addsuffix /, $(dts-dirs))
|
|
|
|
dtstree := $(srctree)/$(src)
|
|
dtb-$(CONFIG_OF_ALL_DTBS) := $(patsubst $(dtstree)/%.dts,%.dtb, $(foreach d,$(dts-dirs), $(wildcard $(dtstree)/$(d)/*.dts)))
|
|
|
|
always := $(dtb-y)
|
|
subdir-y := $(dts-dirs)
|
|
clean-files := *.dtb *.dtb.S
|