diff options
| author | Marek Vasut <[email protected]> | 2024-03-18 16:03:14 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-03-20 17:13:01 -0400 |
| commit | 672af4f8acf94e70a65cfdc3ce47d2538a9b04fb (patch) | |
| tree | 99833ba5924469d42e73267261ef10d56910e228 | |
| 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 <[email protected]>
Reviewed-by: Sumit Garg <[email protected]>
Tested-by: Adam Ford <[email protected]> #am3517-evm
Tested-by: Tony Dinh <[email protected]>
| -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 |
