]> git.sur5r.net Git - u-boot/commitdiff
kbuild: fix build rule of u-boot-spl.dtb
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 5 Feb 2016 08:55:14 +0000 (17:55 +0900)
committerTom Rini <trini@konsulko.com>
Mon, 8 Feb 2016 15:22:41 +0000 (10:22 -0500)
The build command of u-boot-spl.dtb is not constant, but dependent
on CONFIG_OF_SPL_REMOVE_PROPS.  Use $(call if_changed,...) so that
the change of CONFIG_OF_SPL_REMOVE_PROPS is detected.

Also, add tools/fdtgrep to the dependency to make sure u-boot-spl.dtb
is generated by the up-to-date fdtgrep in case the tool is modified.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
scripts/Makefile.spl

index bd333e277baa26c2b31f776441aeb29c02e308d0..44242842db31f0af7ffe85fad3ede79356395354 100644 (file)
@@ -193,8 +193,8 @@ quiet_cmd_fdtgrep = FDTGREP $@
        $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
                $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS)))
 
-$(obj)/$(SPL_BIN).dtb: dts/dt.dtb
-       $(call cmd,fdtgrep)
+$(obj)/$(SPL_BIN).dtb: dts/dt.dtb $(objtree)/tools/fdtgrep FORCE
+       $(call if_changed,fdtgrep)
 
 quiet_cmd_cpp_cfg = CFG     $@
 cmd_cpp_cfg = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \