mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Make it an error to build armv6 without INTRNG enabled. Most kernel configs
have been updated for this, with the exception of the two marked as NO_UNIVERSE in r319514.
This commit is contained in:
parent
5dc97550fb
commit
08cda712b4
1 changed files with 4 additions and 0 deletions
|
|
@ -103,6 +103,10 @@ __FBSDID("$FreeBSD$");
|
|||
#error FreeBSD/arm doesn't provide compatibility with releases prior to 10
|
||||
#endif
|
||||
|
||||
#if __ARM_ARCH >= 6 && !defined(INTRNG)
|
||||
#error armv6 requires INTRNG
|
||||
#endif
|
||||
|
||||
struct pcpu __pcpu[MAXCPU];
|
||||
struct pcpu *pcpup = &__pcpu[0];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue