The branch stable/14 has been updated by novel: URL: https://cgit.FreeBSD.org/src/commit/?id=139f620c0c9056ddec81fce3738396b145bd69b7
commit 139f620c0c9056ddec81fce3738396b145bd69b7 Author: Roman Bogorodskiy <[email protected]> AuthorDate: 2026-01-26 18:24:15 +0000 Commit: Roman Bogorodskiy <[email protected]> CommitDate: 2026-01-31 13:24:33 +0000 bhyve: make BHYVE_SNAPSHOT amd64-only Build fails with BHYVE_SNAPSHOT enabled on non-amd64, so add it to BROKEN_OPTIONS for these arches. PR: 292686 Reviewed by: emaste, markj MFC after: 3 days Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D54873 (cherry picked from commit b01763b2b2ab2d87f7d3c6ae57783c731ce548dd) --- share/mk/src.opts.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index ee3784cecb4b..f3e4f672347e 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -372,6 +372,10 @@ BROKEN_OPTIONS+= OFED BROKEN_OPTIONS+= TESTS .endif +.if ${__T} != "amd64" +BROKEN_OPTIONS+=BHYVE_SNAPSHOT +.endif + .-include <site.src.opts.mk> .include <bsd.mkopt.mk>
