diff options
author | Marek Vasut | 2024-03-18 16:03:14 +0100 |
---|---|---|
committer | Tom Rini | 2024-03-20 17:13:01 -0400 |
commit | 672af4f8acf94e70a65cfdc3ce47d2538a9b04fb (patch) | |
tree | 99833ba5924469d42e73267261ef10d56910e228 /dts | |
parent | 3b639f643889f92ddf1b7f6689fb12ce6693addf (diff) |
Makefile: Add missing OF_UPSTREAM Makefile for 32bit ARM
Copy dts/upstream/src/arm64/Makefile into dts/upstream/src/arm/Makefile
and create a commit. This makes 32bit ARM buildable with OF_UPSTREAM .
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Sumit Garg <sumit.garg@linaro.org>
Tested-by: Adam Ford <aford173@gmail.com> #am3517-evm
Tested-by: Tony Dinh <mibodhi@gmail.com>
Diffstat (limited to 'dts')
-rw-r--r-- | dts/upstream/src/arm/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dts/upstream/src/arm/Makefile b/dts/upstream/src/arm/Makefile new file mode 100644 index 00000000000..9a8f6aa3584 --- /dev/null +++ b/dts/upstream/src/arm/Makefile @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: GPL-2.0+ + +include $(srctree)/scripts/Makefile.dts + +targets += $(dtb-y) + +# Add any required device tree compiler flags here +DTC_FLAGS += -a 0x8 + +PHONY += dtbs +dtbs: $(addprefix $(obj)/, $(dtb-y)) + @: + +clean-files := */*.dtb */*.dtbo |