| 1234567891011121314151617 |
- dtb-$(CONFIG_ARCH_THUNDER) += thunder-88xx.dtb
- dtb-$(CONFIG_ARCH_VEXPRESS) += rtsm_ve-aemv8a.dtb foundation-v8.dtb
- dtb-$(CONFIG_ARCH_XGENE) += apm-mustang.dtb
- targets += dtbs
- DTB_NAMES := $(subst $\",,$(CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE_NAMES))
- ifneq ($(DTB_NAMES),)
- DTB_LIST := $(addsuffix .dtb,$(DTB_NAMES))
- else
- DTB_LIST := $(dtb-y)
- endif
- targets += $(DTB_LIST)
- dtbs: $(addprefix $(obj)/, $(DTB_LIST))
- clean-files := dts/*.dtb *.dtb
|