mirror of
https://github.com/opnsense/src.git
synced 2026-06-07 07:42:26 -04:00
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:
parent
a2aff11aeb
commit
06e374b774
1 changed files with 2 additions and 2 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Reference in a new issue