kern.opts.mk (d60840138f6292c1ceeb177ebe797eca0b2749da) | kern.opts.mk (99819ca00cb3f5377353364a78bff362b0c562a3) |
---|---|
1# $FreeBSD$ 2 3# Options set in the build system that affect the kernel somehow. 4 5# 6# Define MK_* variables (which are either "yes" or "no") for users 7# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the 8# make(1) environment. --- 136 unchanged lines hidden (view full) --- 145.else 146MK_${var}_SUPPORT:= yes 147.endif 148.else # otherwise, yes 149MK_${var}_SUPPORT:= yes 150.endif 151.endif 152.endfor | 1# $FreeBSD$ 2 3# Options set in the build system that affect the kernel somehow. 4 5# 6# Define MK_* variables (which are either "yes" or "no") for users 7# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the 8# make(1) environment. --- 136 unchanged lines hidden (view full) --- 145.else 146MK_${var}_SUPPORT:= yes 147.endif 148.else # otherwise, yes 149MK_${var}_SUPPORT:= yes 150.endif 151.endif 152.endfor |
153 154# Some modules only compile successfully if option FDT is set, due to #ifdef FDT 155# wrapped around declarations. Module makefiles can optionally compile such 156# things using .if !empty(OPT_FDT) 157.if !defined(OPT_FDT) && defined(KERNBUILDDIR) 158OPT_FDT!= sed -n '/FDT/p' ${KERNBUILDDIR}/opt_platform.h 159.export OPT_FDT 160.endif |
|