git: 06e374b774cd - main - arm: Update the minimum arm architecture value
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 08 Apr 2025 10:49:15 UTC
The branch main has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=06e374b774cd2bccf3c433fc2aa23667b9303cde commit 06e374b774cd2bccf3c433fc2aa23667b9303cde Author: Andrew Turner <andrew@FreeBSD.org> AuthorDate: 2025-03-31 08:55:54 +0000 Commit: Andrew Turner <andrew@FreeBSD.org> CommitDate: 2025-04-08 10:48:28 +0000 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 7db5a6f9bcdd..cfc0b32f5102 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];