aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2022-07-05 16:33:17 +0000
committerWarner Losh <imp@FreeBSD.org>2023-08-12 04:55:10 +0000
commitefbfa74caf8ddde7013bc0a82782eb40aaefa6e3 (patch)
tree16f4a7dc088237cd34cbf48b53968dbc4dfb2a99
parent0bc26e32545069586676149efcafae98c3e3dea3 (diff)
downloadsrc-efbfa74caf8ddde7013bc0a82782eb40aaefa6e3.tar.gz
src-efbfa74caf8ddde7013bc0a82782eb40aaefa6e3.zip
rpi: Simplify dtb file tests
Now that we no longer support armv[45] devices, these tests can be simplified. While here, update the comment to reflect which rpi devices we support. It's been way more thant he Pi-B for a long time. Sponsored by: Netflix
-rw-r--r--sys/modules/dtb/rpi/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/dtb/rpi/Makefile b/sys/modules/dtb/rpi/Makefile
index 482f8d5f30a6..cdc6c86777d3 100644
--- a/sys/modules/dtb/rpi/Makefile
+++ b/sys/modules/dtb/rpi/Makefile
@@ -1,10 +1,10 @@
# $FreeBSD$
-# DTS files for the Raspberry Pi-B
-.if ${MACHINE_ARCH:Marmv[67]*} != ""
+# DTS files for the 32-bit and 64-bit arm-based Raspberry Pi family of devices
+.if ${MACHINE_CPUARCH} == "arm"
DTSO= \
spigen-rpi-b.dtso \
spigen-rpi2.dtso
-.elif ${MACHINE_ARCH} == "aarch64"
+.elif ${MACHINE_CPUARCH} == "aarch64"
DTSO= \
spigen-rpi3.dtso \
spigen-rpi4.dtso