From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andre Przywara Date: Sat, 9 Mar 2019 01:06:43 +0000 Subject: [U-Boot] [PATCH] sunxi: dts: Add Pine64-LTS .dtb to Makefile Message-ID: <20190309010643.28014-1-andre.przywara@arm.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de When adding support for the Pine64-LTS board, the .dtb file was not added to the Makefile. This isn't a problem when just building U-Boot for this board directly, but fails to build if the .dtb file is just mentioned as part of a CONFIG_OF_LIST definition. Add the missing line to allow builds with multiple .dtbs. Signed-off-by: Andre Przywara --- arch/arm/dts/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile index fbc0f8afea..ba67824d95 100644 --- a/arch/arm/dts/Makefile +++ b/arch/arm/dts/Makefile @@ -424,6 +424,7 @@ dtb-$(CONFIG_MACH_SUN50I) += \ sun50i-a64-nanopi-a64.dtb \ sun50i-a64-olinuxino.dtb \ sun50i-a64-orangepi-win.dtb \ + sun50i-a64-pine64-lts.dtb \ sun50i-a64-pine64-plus.dtb \ sun50i-a64-pine64.dtb \ sun50i-a64-pinebook.dtb \ -- 2.14.5