src.opts.mk (6f077571b9152476f5cdd3579b8e9a514faf9003) | src.opts.mk (c1418270b28edf9b99044181e9f48dfc0a7dc160) |
---|---|
1# $FreeBSD$ 2# 3# Option file for FreeBSD /usr/src builds. 4# 5# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf 6# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no} 7# with sensible (usually) defaults. 8# --- 329 unchanged lines hidden (view full) --- 338.endif 339.if ${__T:Mmips*} 340BROKEN_OPTIONS+=SSP 341.endif 342# EFI doesn't exist on mips, powerpc, sparc or riscv. 343.if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*} 344BROKEN_OPTIONS+=EFI 345.endif | 1# $FreeBSD$ 2# 3# Option file for FreeBSD /usr/src builds. 4# 5# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf 6# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no} 7# with sensible (usually) defaults. 8# --- 329 unchanged lines hidden (view full) --- 338.endif 339.if ${__T:Mmips*} 340BROKEN_OPTIONS+=SSP 341.endif 342# EFI doesn't exist on mips, powerpc, sparc or riscv. 343.if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*} 344BROKEN_OPTIONS+=EFI 345.endif |
346# GELI isn't supported on !x86 347.if ${__T} != "i386" && ${__T} != "amd64" 348BROKEN_OPTIONS+=LOADER_GELI 349.endif | |
350# OFW is only for powerpc and sparc64, exclude others 351.if ${__T:Mpowerpc*} == "" && ${__T:Msparc64} == "" 352BROKEN_OPTIONS+=LOADER_OFW 353.endif 354# UBOOT is only for arm, mips and powerpc, exclude others 355.if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == "" 356BROKEN_OPTIONS+=LOADER_UBOOT 357.endif --- 193 unchanged lines hidden --- | 346# OFW is only for powerpc and sparc64, exclude others 347.if ${__T:Mpowerpc*} == "" && ${__T:Msparc64} == "" 348BROKEN_OPTIONS+=LOADER_OFW 349.endif 350# UBOOT is only for arm, mips and powerpc, exclude others 351.if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == "" 352BROKEN_OPTIONS+=LOADER_UBOOT 353.endif --- 193 unchanged lines hidden --- |