diff options
author | Robert Richter <rrichter@cavium.com> | 2014-09-03 18:17:02 +0400 |
---|---|---|
committer | Robert Richter <rrichter@cavium.com> | 2014-10-21 20:06:59 +0400 |
commit | 323a028d39cd8df37b1c6a62ac04987647ae4b67 (patch) | |
tree | e32837f0e55dce07e785dd70dc1730921f87509a /arch/arm64/boot/dts/Makefile | |
parent | d38726c485d3fd6e9f2ebd1adaef0c3ead48a5ac (diff) | |
download | linux-323a028d39cd8df37b1c6a62ac04987647ae4b67.tar.xz |
dts, kbuild: Implement support for dtb vendor subdirs
This patch adds support of vendor sub directories for dtb files.
Subdirectories can be specified in $(dts-dirs). Kbuild traverses over
all directories while building and installing dtb files. The directory
tree is also reflected in the install path.
Tested-by: Andrew Bresticker <abrestic@chromium.org>
Signed-off-by: Robert Richter <rrichter@cavium.com>
Diffstat (limited to 'arch/arm64/boot/dts/Makefile')
-rw-r--r-- | arch/arm64/boot/dts/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/Makefile b/arch/arm64/boot/dts/Makefile index aa28902c3582..77130bdf14b4 100644 --- a/arch/arm64/boot/dts/Makefile +++ b/arch/arm64/boot/dts/Makefile @@ -3,4 +3,5 @@ dtb-$(CONFIG_ARCH_VEXPRESS) += rtsm_ve-aemv8a.dtb foundation-v8.dtb dtb-$(CONFIG_ARCH_XGENE) += apm-mustang.dtb always := $(dtb-y) +subdir-y := $(dts-dirs) clean-files := *.dtb |