diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2024-03-30 02:31:32 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2024-03-30 02:31:32 +0000 |
commit | 298b8f1cf0f45f65573d8cf5efd78cfccb44790a (patch) | |
tree | a66c6fd43481776a2858e6ecca3eec9df82ff3ab | |
parent | 44847114bd4c61ed3dfcc879fa0d7deb452e12d3 (diff) | |
download | src-298b8f1cf0f45f65573d8cf5efd78cfccb44790a.tar.gz src-298b8f1cf0f45f65573d8cf5efd78cfccb44790a.zip |
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.
-rw-r--r-- | sys/modules/dtb/mv/Makefile | 4 |
1 files 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 \ |