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