[U-Boot] [PATCH] sunxi: dts: Add Pine64-LTS .dtb to Makefile

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 andre.przywara@arm.com --- 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 \
participants (1)
-
Andre Przywara