From: Aneesh Bansal Date: Wed, 23 Dec 2015 08:46:23 +0000 (+0530) Subject: arm, Makefile: correct compilation flag for u-boot-dtb X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=c2b233cbec4245e9c0b5f6e54275b771830328d6;p=u-boot.git arm, Makefile: correct compilation flag for u-boot-dtb The compilation of u-boot-dtb.img should be controlled by CONFIG_OF_CONTROL and not CONFIG_DM. CONFIG_DM may be defined even without Device Tree requirement. This was added in commit 947cee1127c5fa97529c8cda4f0b48d141f92560. Signed-off-by: Ruchika Gupta Signed-off-by: Aneesh Bansal CC: Alison Wang --- diff --git a/Makefile b/Makefile index aa19cc6eed..8fe7787cd5 100644 --- a/Makefile +++ b/Makefile @@ -1136,7 +1136,7 @@ spl/u-boot-spl.pbl: spl/u-boot-spl.bin FORCE $(call if_changed,mkimage) ifeq ($(ARCH),arm) -ifdef CONFIG_DM +ifdef CONFIG_OF_CONTROL UBOOT_BINLOAD := u-boot-dtb.img else UBOOT_BINLOAD := u-boot.img