src.opts.mk (20adba8bc1beb125d5e5ed8f12e747ae79ca6a10) | src.opts.mk (9729f076e4d93c5a37e78d427bfe0f1ab99bbcc6) |
---|---|
1# $FreeBSD$ 2# 3# Option file for FreeBSD /usr/src builds, at least the userland and boot loader 4# portions of the tree. These options generally chose what parts of the tree to 5# include or omit and are FreeBSD source tree specific. 6# 7# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf 8# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no} --- 318 unchanged lines hidden (view full) --- 327.endif 328 329.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && \ 330 ${__T:Mpowerpc64*} == "" 331BROKEN_OPTIONS+=CXGBETOOL 332BROKEN_OPTIONS+=MLX5TOOL 333.endif 334 | 1# $FreeBSD$ 2# 3# Option file for FreeBSD /usr/src builds, at least the userland and boot loader 4# portions of the tree. These options generally chose what parts of the tree to 5# include or omit and are FreeBSD source tree specific. 6# 7# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf 8# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no} --- 318 unchanged lines hidden (view full) --- 327.endif 328 329.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && \ 330 ${__T:Mpowerpc64*} == "" 331BROKEN_OPTIONS+=CXGBETOOL 332BROKEN_OPTIONS+=MLX5TOOL 333.endif 334 |
335# HyperV is currently x86-only 336.if ${__T} != "amd64" && ${__T} != "i386" | 335.if ${__T} != "amd64" && ${__T} != "i386" && ${__T} != "aarch64" |
337BROKEN_OPTIONS+=HYPERV 338.endif 339 340# NVME is only aarch64, x86 and powerpc64* 341.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && \ 342 ${__T:Mpowerpc64*} == "" 343BROKEN_OPTIONS+=NVME 344.endif --- 162 unchanged lines hidden --- | 336BROKEN_OPTIONS+=HYPERV 337.endif 338 339# NVME is only aarch64, x86 and powerpc64* 340.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && \ 341 ${__T:Mpowerpc64*} == "" 342BROKEN_OPTIONS+=NVME 343.endif --- 162 unchanged lines hidden --- |