From: Simon Glass Date: Sun, 18 Oct 2015 01:41:18 +0000 (-0600) Subject: dm: spl: Generate u-boot-spl-dtb.bin only when enabled X-Git-Tag: v2016.01-rc1~124 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=021b4d117cc9df9dba65c07f40d242e6d09f3106;p=platform%2Fkernel%2Fu-boot.git dm: spl: Generate u-boot-spl-dtb.bin only when enabled At present this file is generated even when device tree is not enabled in SPL. Avoid this, since this file serves no purpose in that case. Signed-off-by: Simon Glass Signed-off-by: Michal Simek --- diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 2df93c8..dd235b9 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -129,7 +129,9 @@ boot.bin: $(obj)/u-boot-spl.bin ALL-y += $(obj)/$(SPL_BIN).bin $(obj)/$(SPL_BIN).cfg +ifdef CONFIG_SPL_OF_CONTROL ALL-$(CONFIG_OF_SEPARATE) += $(obj)/$(SPL_BIN)-pad.bin $(obj)/$(SPL_BIN)-dtb.bin +endif ifdef CONFIG_SAMSUNG ALL-y += $(obj)/$(BOARD)-spl.bin