diff options
| author | Rob Herring <robh@kernel.org> | 2017-11-09 17:05:15 -0600 |
|---|---|---|
| committer | Rob Herring <robh@kernel.org> | 2017-11-09 17:05:15 -0600 |
| commit | 27e8524d80b7f7fa28a3c1adae5176715231caf2 (patch) | |
| tree | 63c6cd6304ae8e4cb876d887303859f2a9cd0c66 /scripts/Makefile.lib | |
| parent | 48c926cd3414c7e628909f6f831394184816da87 (diff) | |
| parent | 7e7962dd1a5307bca1793a3f9a98ad5514306c7a (diff) | |
Merge branch 'dt/kbuild' into dt/next
Diffstat (limited to 'scripts/Makefile.lib')
| -rw-r--r-- | scripts/Makefile.lib | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 5e975fee0f5b..09ec69d2c499 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -69,6 +69,11 @@ obj-dirs := $(dir $(multi-objs) $(obj-y)) real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m))) $(extra-y) real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y)) $($(m:.o=-m))),$($(m:.o=-objs)) $($(m:.o=-y)) $($(m:.o=-m)),$(m))) +# DTB +# If CONFIG_OF_ALL_DTBS is enabled, all DT blobs are built +extra-y += $(dtb-y) +extra-$(CONFIG_OF_ALL_DTBS) += $(dtb-) + # Add subdir path extra-y := $(addprefix $(obj)/,$(extra-y)) |
