git: 298b8f1cf0f4 - main - dts: Fix arm dts path for marvell too
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 30 Mar 2024 02:33:45 UTC
The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=298b8f1cf0f45f65573d8cf5efd78cfccb44790a commit 298b8f1cf0f45f65573d8cf5efd78cfccb44790a Author: Bjoern A. Zeeb <bz@FreeBSD.org> AuthorDate: 2024-03-30 02:31:32 +0000 Commit: Bjoern A. Zeeb <bz@FreeBSD.org> CommitDate: 2024-03-30 02:31:32 +0000 dts: Fix arm dts path for marvell too Linux 6.5 moved to a vendor-based subdirectory for arm DTS, change our Makefiles accordingly. This makes universe also compile arm.armv7 ARMADA38X sucessfully. --- sys/modules/dtb/mv/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/dtb/mv/Makefile b/sys/modules/dtb/mv/Makefile index 3e6da07796a4..0c78527b1fcc 100644 --- a/sys/modules/dtb/mv/Makefile +++ b/sys/modules/dtb/mv/Makefile @@ -2,8 +2,8 @@ .if ${MACHINE_ARCH} == "armv7" DTS= \ - armada-388-clearfog.dts \ - armada-388-gp.dts + marvell/armada-388-clearfog.dts \ + marvell/armada-388-gp.dts .elif ${MACHINE_ARCH} == "aarch64" DTS= \ marvell/armada-3720-espressobin.dts \