
On Mon, Oct 21, 2024 at 05:34:16PM +0530, Sumit Garg wrote:
On Fri, 18 Oct 2024 at 20:25, Conor Dooley conor@kernel.org wrote:
diff --git a/dts/upstream/src/riscv/Makefile b/dts/upstream/src/riscv/Makefile new file mode 100644 index 00000000000..dd2ed0bdfbd --- /dev/null +++ b/dts/upstream/src/riscv/Makefile @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: GPL-2.0+
+include $(srctree)/scripts/Makefile.dts
+targets += $(dtb-y)
+DTC_FLAGS += -R 4 -p 0x1000
+PHONY += dtbs +dtbs: $(addprefix $(obj)/, $(dtb-y))
@:
+clean-files := */*.dtb */*.dtbo
Many of the common Makefile bits were moved by patch [1] to scripts/Makefile.dts. So you should rebase to the latest master branch. Apart from that, changes look good to me.
[1] https://github.com/u-boot/u-boot/commit/d2061828a4c1b60b44cd2307b6a782ac2efb...
Heh, I had actually rebased to the latest next a few days before sending these, but I guess that didn't include that match. next or master make little difference here I think as a base, so I'll do that, thanks.