From: Eugen Hristev Date: Thu, 9 Aug 2018 11:12:00 +0000 (+0300) Subject: ARM: dts: Makefile: fix build for at91family X-Git-Tag: v2018.11-rc1~206 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e18adaf114ea8e88096585019780466615d8697;p=platform%2Fkernel%2Fu-boot.git ARM: dts: Makefile: fix build for at91family For at91family, makefile was building unwanted DTBs Moved them under specific target configuration. Signed-off-by: Eugen Hristev --- diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile index 31d9256..2490029 100644 --- a/arch/arm/dts/Makefile +++ b/arch/arm/dts/Makefile @@ -1,9 +1,9 @@ # SPDX-License-Identifier: GPL-2.0+ -dtb-$(CONFIG_AT91FAMILY) += at91sam9260-smartweb.dtb \ - at91sam9g20-taurus.dtb \ - at91sam9g45-corvus.dtb \ - at91sam9g45-gurnard.dtb +dtb-$(CONFIG_TARGET_SMARTWEB) += at91sam9260-smartweb.dtb +dtb-$(CONFIG_TARGET_TAURUS) += at91sam9g20-taurus.dtb +dtb-$(CONFIG_TARGET_CORVUS) += at91sam9g45-corvus.dtb +dtb-$(CONFIG_TARGET_GURNARD) += at91sam9g45-gurnard.dtb dtb-$(CONFIG_S5PC100) += s5pc1xx-smdkc100.dtb dtb-$(CONFIG_S5PC110) += s5pc1xx-goni.dtb