From 06e374b774cd2bccf3c433fc2aa23667b9303cde Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Mon, 31 Mar 2025 09:55:54 +0100 Subject: [PATCH] arm: Update the minimum arm architecture value We only support armv7 as the 32-bit arm architecture. Reviewed by: cognet Sponsored by: Arm Ltd Differential Revision: https://reviews.freebsd.org/D49532 --- sys/arm/arm/machdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arm/arm/machdep.c b/sys/arm/arm/machdep.c index 7db5a6f9bcd..cfc0b32f510 100644 --- a/sys/arm/arm/machdep.c +++ b/sys/arm/arm/machdep.c @@ -105,8 +105,8 @@ #endif -#if __ARM_ARCH < 6 -#error FreeBSD requires ARMv6 or later +#if __ARM_ARCH < 7 +#error FreeBSD requires ARMv7 or later #endif struct pcpu __pcpu[MAXCPU];