The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=7f3da1f800f77150fab2a07ce9cafdca41b29ee9
commit 7f3da1f800f77150fab2a07ce9cafdca41b29ee9 Author: Ed Maste <[email protected]> AuthorDate: 2025-12-18 21:54:38 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2025-12-18 21:55:46 +0000 aq(4): Build on x86 only for now It fails to build on arm64. As it is experimental and in development just limit it to x86 until this is fixed. Reported by: brd Fixes: 75177aebf039 ("aq(4): Add build infrastructure") --- sys/modules/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 731a959976c3..bf3588926acf 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -44,8 +44,8 @@ SUBDIR= \ ${_armv8crypto} \ ${_armv8_rng} \ ${_asmc} \ - aq \ ata \ + ${_aq} \ ath \ ath_dfs \ ath_hal \ @@ -735,6 +735,7 @@ _imx= imx .endif .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" +_aq= aq _agp= agp .if ${MACHINE_CPUARCH} == "i386" || !empty(COMPAT_FREEBSD32_ENABLED) _aout= aout
