Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Apr 2025 10:49:15 GMT
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 06e374b774cd - main - arm: Update the minimum arm architecture value
Message-ID:  <202504081049.538AnFrd002190@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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];



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202504081049.538AnFrd002190>