diff options
| author | Christian Marangi | 2026-02-15 13:33:14 +0000 |
|---|---|---|
| committer | Christian Marangi | 2026-02-16 12:14:32 +0000 |
| commit | 041ef9648d29718dcfffa0d43aaf44f2c766e500 (patch) | |
| tree | bdb40c52a4772a06a70d83e16b0a02bee8914fd9 | |
| parent | a66e30631c875edf1e3662a537c3d2f4e34f7334 (diff) | |
| download | openwrt-041ef9648d29718dcfffa0d43aaf44f2c766e500.tar.gz | |
qualcommbe: move Device DTS to dedicated DTS directory
Align the qualcommbe target to the pattern already used on other devices where
the device DTS are placed in a dedicated directory separate from the files
directory.
This, while trying to enforce a common pattern for every target, also permits to
do modification to device DTS without having to trigger a recompilation of the
entire kernel (as the files directory is not touched)
Link: https://github.com/openwrt/openwrt/pull/22038
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | target/linux/qualcommbe/dts/ipq9570-kiwi-dvk.dts (renamed from target/linux/qualcommbe/files/arch/arm64/boot/dts/qcom/ipq9570-kiwi-dvk.dts) | 0 | ||||
| -rw-r--r-- | target/linux/qualcommbe/image/Makefile | 2 | ||||
| -rw-r--r-- | target/linux/qualcommbe/image/ipq95xx.mk | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/qualcommbe/files/arch/arm64/boot/dts/qcom/ipq9570-kiwi-dvk.dts b/target/linux/qualcommbe/dts/ipq9570-kiwi-dvk.dts index 903772f7cc..903772f7cc 100644 --- a/target/linux/qualcommbe/files/arch/arm64/boot/dts/qcom/ipq9570-kiwi-dvk.dts +++ b/target/linux/qualcommbe/dts/ipq9570-kiwi-dvk.dts diff --git a/target/linux/qualcommbe/image/Makefile b/target/linux/qualcommbe/image/Makefile index c12fc97807..245dc76fdc 100644 --- a/target/linux/qualcommbe/image/Makefile +++ b/target/linux/qualcommbe/image/Makefile @@ -6,7 +6,7 @@ define Device/Default KERNEL_LOADADDR := 0x41000000 DEVICE_DTS = $$(SOC)-$(lastword $(subst _, ,$(1))) DEVICE_DTS_CONFIG := config@1 - DEVICE_DTS_DIR := $(DTS_DIR)/qcom + DEVICE_DTS_DIR := ../dts IMAGES := sysupgrade.bin IMAGE/sysupgrade.bin = sysupgrade-tar | append-metadata IMAGE/sysupgrade.bin/squashfs := diff --git a/target/linux/qualcommbe/image/ipq95xx.mk b/target/linux/qualcommbe/image/ipq95xx.mk index 210a7dcc76..259c388aba 100644 --- a/target/linux/qualcommbe/image/ipq95xx.mk +++ b/target/linux/qualcommbe/image/ipq95xx.mk @@ -1,3 +1,5 @@ +DTS_DIR := $(DTS_DIR)/qcom + define Device/8devices_kiwi-dvk $(call Device/FitImage) $(call Device/EmmcImage) |