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
This commit is contained in:
Andrew Turner 2025-03-31 09:55:54 +01:00
parent a2aff11aeb
commit 06e374b774

View file

@ -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];