diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-03-23 09:04:34 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-04-07 06:04:02 -0400 |
commit | a7f924190924783d3e291624c4f0c3f51481ae2c (patch) | |
tree | e696224fb9f3081f3f3b37d228817505a76dfd18 /scripts | |
parent | b23d1a241f4eb44ae55785c9b65274717c8e2c1e (diff) |
kbuild: add %.dtb.S and %.dtb to 'targets' automatically
Another common pattern that consists of chained commands is to compile
a DTB as binary data into the kernel image or a module. It is used in
several places in the source tree. Support it in the core Makefile.
$(call if_changed,dt_S_dtb) is more suitable than $(call cmd,dt_S_dtb)
in case cmd_dt_S_dtb is changed in the future.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Frank Rowand <frowand.list@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.build | 4 | ||||
-rw-r--r-- | scripts/Makefile.lib | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 36f7990c5701..15b3bbb3248b 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
@@ -544,9 +544,11 @@ targets := $(filter-out $(PHONY), $(targets)) | |||
544 | intermediate_targets = $(foreach sfx, $(2), \ | 544 | intermediate_targets = $(foreach sfx, $(2), \ |
545 | $(patsubst %$(strip $(1)),%$(sfx), \ | 545 | $(patsubst %$(strip $(1)),%$(sfx), \ |
546 | $(filter %$(strip $(1)), $(targets)))) | 546 | $(filter %$(strip $(1)), $(targets)))) |
547 | # %.dtb.o <- %.dtb.S <- %.dtb <- %.dts | ||
547 | # %.lex.o <- %.lex.c <- %.l | 548 | # %.lex.o <- %.lex.c <- %.l |
548 | # %.tab.o <- %.tab.[ch] <- %.y | 549 | # %.tab.o <- %.tab.[ch] <- %.y |
549 | targets += $(call intermediate_targets, .lex.o, .lex.c) \ | 550 | targets += $(call intermediate_targets, .dtb.o, .dtb.S .dtb) \ |
551 | $(call intermediate_targets, .lex.o, .lex.c) \ | ||
550 | $(call intermediate_targets, .tab.o, .tab.c .tab.h) | 552 | $(call intermediate_targets, .tab.o, .tab.c .tab.h) |
551 | 553 | ||
552 | # Descending | 554 | # Descending |
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index b1d938fab73b..7f5bca0c3b7b 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
@@ -279,8 +279,8 @@ cmd_dt_S_dtb= \ | |||
279 | echo '.balign STRUCT_ALIGNMENT'; \ | 279 | echo '.balign STRUCT_ALIGNMENT'; \ |
280 | ) > $@ | 280 | ) > $@ |
281 | 281 | ||
282 | $(obj)/%.dtb.S: $(obj)/%.dtb | 282 | $(obj)/%.dtb.S: $(obj)/%.dtb FORCE |
283 | $(call cmd,dt_S_dtb) | 283 | $(call if_changed,dt_S_dtb) |
284 | 284 | ||
285 | quiet_cmd_dtc = DTC $@ | 285 | quiet_cmd_dtc = DTC $@ |
286 | cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \ | 286 | cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \ |