diff options
author | Rob Herring <robh@kernel.org> | 2015-10-06 17:59:26 -0500 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2015-10-27 16:12:15 -0500 |
commit | 0395c1aacfbaa0bc959faf415c7d95f20bb4a377 (patch) | |
tree | 5449cc975e2cfa29e7552da605e5659586131ea3 /arch/h8300/boot | |
parent | d58d76efffe77413668a4ff7cf0d506fcab98efd (diff) | |
download | linux-stable-0395c1aacfbaa0bc959faf415c7d95f20bb4a377.tar.gz linux-stable-0395c1aacfbaa0bc959faf415c7d95f20bb4a377.tar.bz2 linux-stable-0395c1aacfbaa0bc959faf415c7d95f20bb4a377.zip |
h8300: enable building of all dtbs
Enable building all dtb files when CONFIG_OF_ALL_DTBS is enabled. The dtbs
are not really dependent on a platform being enabled or any other kernel
config, so for testing coverage it is convenient to build all of the dtbs.
This builds all dts files in the tree, not just targets listed.
Signed-off-by: Rob Herring <robh@kernel.org>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: uclinux-h8-devel@lists.sourceforge.jp
Diffstat (limited to 'arch/h8300/boot')
-rw-r--r-- | arch/h8300/boot/dts/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/h8300/boot/dts/Makefile b/arch/h8300/boot/dts/Makefile index 0abaf1ad830e..6c08467c6a3a 100644 --- a/arch/h8300/boot/dts/Makefile +++ b/arch/h8300/boot/dts/Makefile @@ -8,5 +8,8 @@ dtb-$(CONFIG_H8300H_SIM) := h8300h_sim.dtb dtb-$(CONFIG_H8S_SIM) := h8s_sim.dtb dtb-$(CONFIG_H8S_EDOSK2674) := edosk2674.dtb +dtstree := $(srctree)/$(src) +dtb-$(CONFIG_OF_ALL_DTBS) := $(patsubst $(dtstree)/%.dts,%.dtb, $(wildcard $(dtstree)/*.dts)) + always := $(dtb-y) clean-files := *.dtb.S *.dtb |