diff options
author | Jagdish Gediya <jagdish.gediya@nxp.com> | 2018-09-03 21:35:06 +0530 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2018-09-27 10:13:38 -0700 |
commit | 7d7a8e99e4b7160c777b83db02d3a8f07b289c12 (patch) | |
tree | bac8890ad1a9aa2345fe30345792ae89c08c0615 | |
parent | 4d3294b1d5281f9c3f62b47ba17250eb0035df4d (diff) |
powerpc/dts: Makefile changes to clean and build dts
Signed-off-by: Jagdish Gediya <jagdish.gediya@nxp.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: York Sun <york.sun@nxp.com>
-rw-r--r-- | arch/powerpc/dts/Makefile | 12 | ||||
-rw-r--r-- | dts/Makefile | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/arch/powerpc/dts/Makefile b/arch/powerpc/dts/Makefile new file mode 100644 index 0000000000..de14e7bfd0 --- /dev/null +++ b/arch/powerpc/dts/Makefile @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: GPL-2.0+ + +targets += $(dtb-y) + +# Add any required device tree compiler flags here +DTC_FLAGS += + +PHONY += dtbs +dtbs: $(addprefix $(obj)/, $(dtb-y)) + @: + +clean-files := *.dtb diff --git a/dts/Makefile b/dts/Makefile index 36dfbe76d1..9a9a3d5c98 100644 --- a/dts/Makefile +++ b/dts/Makefile @@ -61,4 +61,4 @@ dtbs: $(obj)/dt.dtb $(obj)/dt-spl.dtb clean-files := dt.dtb.S dt-spl.dtb.S # Let clean descend into dts directories -subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/mips/dts ../arch/sandbox/dts ../arch/x86/dts +subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/mips/dts ../arch/sandbox/dts ../arch/x86/dts ../arch/powerpc/dts |