diff options
author | Andrew Bresticker <abrestic@chromium.org> | 2014-12-25 12:48:57 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-04-01 11:21:34 -0400 |
commit | 8c0b9ee8665c43ee370108930ff51cab9a545c1c (patch) | |
tree | aa6bd64b02f384db1e2a1cfbdd1ad08388980a71 /arch/mips/boot/dts/Makefile | |
parent | ec9ddad3c6a5789373e4f67009a0dea276febc47 (diff) |
MIPS: Move device-trees into vendor sub-directories
Move the MIPS device-trees into the appropriate vendor sub-directories.
Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
Tested-by: Kevin Cernekee <cernekee@gmail.com>
Cc: f.fainelli@gmail.com
Cc: jaedon.shin@gmail.com
Cc: tglx@linutronix.de
Cc: jason@lakedaemon.net
Cc: jogo@openwrt.org
Cc: arnd@arndb.de
Cc: computersforpeace@gmail.com
Cc: linux-mips@linux-mips.org
Cc: devicetree@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/8835/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/boot/dts/Makefile')
-rw-r--r-- | arch/mips/boot/dts/Makefile | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/arch/mips/boot/dts/Makefile b/arch/mips/boot/dts/Makefile index 4f49fa477f14..5d95e4bd709a 100644 --- a/arch/mips/boot/dts/Makefile +++ b/arch/mips/boot/dts/Makefile | |||
@@ -1,21 +1,12 @@ | |||
1 | dtb-$(CONFIG_BCM3384) += bcm93384wvg.dtb | 1 | dts-dirs += brcm |
2 | dtb-$(CONFIG_CAVIUM_OCTEON_SOC) += octeon_3xxx.dtb octeon_68xx.dtb | 2 | dts-dirs += cavium-octeon |
3 | dtb-$(CONFIG_DT_EASY50712) += easy50712.dtb | 3 | dts-dirs += lantiq |
4 | dtb-$(CONFIG_DT_XLP_EVP) += xlp_evp.dtb | 4 | dts-dirs += mti |
5 | dtb-$(CONFIG_DT_XLP_SVP) += xlp_svp.dtb | 5 | dts-dirs += netlogic |
6 | dtb-$(CONFIG_DT_XLP_FVP) += xlp_fvp.dtb | 6 | dts-dirs += ralink |
7 | dtb-$(CONFIG_DT_XLP_GVP) += xlp_gvp.dtb | 7 | |
8 | dtb-$(CONFIG_DTB_RT2880_EVAL) += rt2880_eval.dtb | 8 | obj-y := $(addsuffix /, $(dts-dirs)) |
9 | dtb-$(CONFIG_DTB_RT305X_EVAL) += rt3052_eval.dtb | 9 | |
10 | dtb-$(CONFIG_DTB_RT3883_EVAL) += rt3883_eval.dtb | 10 | always := $(dtb-y) |
11 | dtb-$(CONFIG_DTB_MT7620A_EVAL) += mt7620a_eval.dtb | 11 | subdir-y := $(dts-dirs) |
12 | dtb-$(CONFIG_MIPS_SEAD3) += sead3.dtb | 12 | clean-files := *.dtb *.dtb.S |
13 | |||
14 | obj-y += $(patsubst %.dtb, %.dtb.o, $(dtb-y)) | ||
15 | |||
16 | targets += dtbs | ||
17 | targets += $(dtb-y) | ||
18 | |||
19 | dtbs: $(addprefix $(obj)/, $(dtb-y)) | ||
20 | |||
21 | clean-files += *.dtb *.dtb.S | ||