From ab2fe43163ed76bfa10b53043982bb6443e362e6 Mon Sep 17 00:00:00 2001 From: Stijn Segers Date: Tue, 19 Mar 2024 22:55:11 +0100 Subject: [PATCH] mvebu: cortexa9: set DTS dir for 6.6 With 6.6, all DTSes were moved to their vendor subdirectories. ARM64 DTSes already used this scheme, but 32 bit Cortex A9 did not, prior to 6.6. Introduce a kernel version check to keep backward compatibility with 6.1. Suggested-by: Robert Marko Signed-off-by: Stijn Segers --- target/linux/mvebu/image/cortexa9.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target/linux/mvebu/image/cortexa9.mk b/target/linux/mvebu/image/cortexa9.mk index d97509f4d6..270c631474 100644 --- a/target/linux/mvebu/image/cortexa9.mk +++ b/target/linux/mvebu/image/cortexa9.mk @@ -3,6 +3,10 @@ # Copyright (C) 2012-2016 OpenWrt.org # Copyright (C) 2016 LEDE-project.org +ifneq ($(KERNEL),6.1) +DTS_DIR := $(DTS_DIR)/marvell +endif + define Build/fortigate-header ( \ dd if=/dev/zero bs=384 count=1 2>/dev/null; \ -- 2.30.2