1# 2# SPDX-License-Identifier: GPL-2.0+ 3# 4 5dtb-$(CONFIG_TARGET_AP121) += ap121.dtb 6dtb-$(CONFIG_TARGET_AP143) += ap143.dtb 7dtb-$(CONFIG_TARGET_BOSTON) += img,boston.dtb 8dtb-$(CONFIG_TARGET_MALTA) += mti,malta.dtb 9dtb-$(CONFIG_TARGET_PIC32MZDASK) += pic32mzda_sk.dtb 10dtb-$(CONFIG_TARGET_XILFPGA) += nexys4ddr.dtb 11dtb-$(CONFIG_BOARD_COMTREND_AR5387UN) += comtrend,ar-5387un.dtb 12dtb-$(CONFIG_BOARD_COMTREND_VR3032U) += comtrend,vr-3032u.dtb 13dtb-$(CONFIG_BOARD_HUAWEI_HG556A) += huawei,hg556a.dtb 14dtb-$(CONFIG_BOARD_TPLINK_WDR4300) += tplink_wdr4300.dtb 15 16targets += $(dtb-y) 17 18# Add any required device tree compiler flags here 19DTC_FLAGS += 20 21PHONY += dtbs 22dtbs: $(addprefix $(obj)/, $(dtb-y)) 23 @: 24 25clean-files := *.dtb 26