- Refactor defining variables.
- Merge common modules both i386 and amd64 into one if-endif. - Sort. - There are no functional changes.
This commit is contained in:
parent
bad2520a2b
commit
513798cc9c
@ -384,32 +384,7 @@ SUBDIR= \
|
|||||||
${_xe} \
|
${_xe} \
|
||||||
xl \
|
xl \
|
||||||
${_zfs} \
|
${_zfs} \
|
||||||
zlib \
|
zlib
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
||||||
_filemon= filemon
|
|
||||||
_vmware= vmware
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} != "powerpc" && ${MACHINE_CPUARCH} != "arm" && \
|
|
||||||
${MACHINE_CPUARCH} != "mips"
|
|
||||||
_syscons= syscons
|
|
||||||
_vpo= vpo
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips"
|
|
||||||
# no BUS_SPACE_UNSPECIFIED
|
|
||||||
# No barrier instruction support (specific to this driver)
|
|
||||||
_sym= sym
|
|
||||||
# intr_disable() is a macro, causes problems
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_cxgb= cxgb
|
|
||||||
.endif
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_cxgbe= cxgbe
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
||||||
.if exists(${.CURDIR}/../opencrypto)
|
.if exists(${.CURDIR}/../opencrypto)
|
||||||
@ -423,23 +398,20 @@ _random= random
|
|||||||
|
|
||||||
.if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
|
.if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
|
||||||
defined(ALL_MODULES)
|
defined(ALL_MODULES)
|
||||||
_carp= carp
|
_carp= carp
|
||||||
_toecore= toecore
|
_toecore= toecore
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MK_INET_SUPPORT} != "no" || defined(ALL_MODULES)
|
.if ${MK_INET_SUPPORT} != "no" || defined(ALL_MODULES)
|
||||||
_if_gre= if_gre
|
_if_gre= if_gre
|
||||||
|
_ipdivert= ipdivert
|
||||||
|
_ipfw= ipfw
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MK_IPFILTER} != "no" || defined(ALL_MODULES)
|
.if ${MK_IPFILTER} != "no" || defined(ALL_MODULES)
|
||||||
_ipfilter= ipfilter
|
_ipfilter= ipfilter
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MK_INET_SUPPORT} != "no" || defined(ALL_MODULES)
|
|
||||||
_ipdivert= ipdivert
|
|
||||||
_ipfw= ipfw
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${MK_NAND} != "no" || defined(ALL_MODULES)
|
.if ${MK_NAND} != "no" || defined(ALL_MODULES)
|
||||||
_nandfs= nandfs
|
_nandfs= nandfs
|
||||||
_nandsim= nandsim
|
_nandsim= nandsim
|
||||||
@ -460,6 +432,7 @@ _pfsync= pfsync
|
|||||||
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
_bce= bce
|
_bce= bce
|
||||||
|
_cxgbe= cxgbe
|
||||||
_fatm= fatm
|
_fatm= fatm
|
||||||
_fxp= fxp
|
_fxp= fxp
|
||||||
_ispfw= ispfw
|
_ispfw= ispfw
|
||||||
@ -471,21 +444,178 @@ _ti= ti
|
|||||||
_txp= txp
|
_txp= txp
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
|
||||||
|
.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips" && \
|
||||||
|
${MACHINE_CPUARCH} != "powerpc"
|
||||||
|
_syscons= syscons
|
||||||
|
_vpo= vpo
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips"
|
||||||
|
# no BUS_SPACE_UNSPECIFIED
|
||||||
|
# No barrier instruction support (specific to this driver)
|
||||||
|
_sym= sym
|
||||||
|
# intr_disable() is a macro, causes problems
|
||||||
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
|
_cxgb= cxgb
|
||||||
|
.endif
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
||||||
|
_agp= agp
|
||||||
|
_an= an
|
||||||
|
_aout= aout
|
||||||
|
_bktr= bktr
|
||||||
|
_bxe= bxe
|
||||||
|
_cardbus= cardbus
|
||||||
|
_cbb= cbb
|
||||||
|
_cpuctl= cpuctl
|
||||||
|
_cpufreq= cpufreq
|
||||||
|
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
||||||
|
_cyclic= cyclic
|
||||||
|
.endif
|
||||||
|
_dpms= dpms
|
||||||
|
_drm= drm
|
||||||
|
_drm2= drm2
|
||||||
|
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
||||||
|
_dtrace= dtrace
|
||||||
|
.endif
|
||||||
|
_ed= ed
|
||||||
|
_em= em
|
||||||
|
_et= et
|
||||||
|
_exca= exca
|
||||||
|
_ext2fs= ext2fs
|
||||||
|
_filemon= filemon
|
||||||
|
_i2c= i2c
|
||||||
|
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
||||||
|
_ibcore= ibcore
|
||||||
|
.endif
|
||||||
|
_if_ndis= if_ndis
|
||||||
|
_igb= igb
|
||||||
|
_io= io
|
||||||
|
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
||||||
|
_ipoib= ipoib
|
||||||
|
.endif
|
||||||
|
_linprocfs= linprocfs
|
||||||
|
_linsysfs= linsysfs
|
||||||
|
_linux= linux
|
||||||
|
_ndis= ndis
|
||||||
|
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
||||||
|
_opensolaris= opensolaris
|
||||||
|
.endif
|
||||||
|
_pccard= pccard
|
||||||
|
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
||||||
|
_rdma= rdma
|
||||||
|
.endif
|
||||||
|
_safe= safe
|
||||||
|
_scsi_low= scsi_low
|
||||||
|
_si= si
|
||||||
|
_smbfs= smbfs
|
||||||
|
_sound= sound
|
||||||
|
_speaker= speaker
|
||||||
|
_splash= splash
|
||||||
|
_sppp= sppp
|
||||||
|
_vmware= vmware
|
||||||
|
_vxge= vxge
|
||||||
|
_wbwd= wbwd
|
||||||
|
_wi= wi
|
||||||
|
.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
|
||||||
|
_zfs= zfs
|
||||||
|
.endif
|
||||||
|
.if ${MACHINE} != "pc98"
|
||||||
|
_aac= aac
|
||||||
|
_aacraid= aacraid
|
||||||
|
_acpi= acpi
|
||||||
|
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
||||||
|
_aesni= aesni
|
||||||
|
.endif
|
||||||
|
_amdsbwd= amdsbwd
|
||||||
|
_amdtemp= amdtemp
|
||||||
|
_arcmsr= arcmsr
|
||||||
|
_asmc= asmc
|
||||||
|
_ciss= ciss
|
||||||
|
_cmx= cmx
|
||||||
|
_coretemp= coretemp
|
||||||
|
.if ${MK_SOURCELESS_HOST} != "no"
|
||||||
|
_hpt27xx= hpt27xx
|
||||||
|
.endif
|
||||||
|
_hptiop= hptiop
|
||||||
|
.if ${MK_SOURCELESS_HOST} != "no"
|
||||||
|
_hptmv= hptmv
|
||||||
|
_hptnr= hptnr
|
||||||
|
_hptrr= hptrr
|
||||||
|
.endif
|
||||||
|
_hyperv= hyperv
|
||||||
|
_ichwd= ichwd
|
||||||
|
_ida= ida
|
||||||
|
_iir= iir
|
||||||
|
_ipmi= ipmi
|
||||||
|
_ips= ips
|
||||||
|
_ipw= ipw
|
||||||
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
|
_ipwfw= ipwfw
|
||||||
|
.endif
|
||||||
|
_isci= isci
|
||||||
|
_iwi= iwi
|
||||||
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
|
_iwifw= iwifw
|
||||||
|
.endif
|
||||||
|
_iwn= iwn
|
||||||
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
|
_iwnfw= iwnfw
|
||||||
|
.endif
|
||||||
|
_ixgb= ixgb
|
||||||
|
_ixgbe= ixgbe
|
||||||
|
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
||||||
|
_mlx4= mlx4
|
||||||
|
_mlx4ib= mlx4ib
|
||||||
|
_mlxen= mlxen
|
||||||
|
.endif
|
||||||
|
_mly= mly
|
||||||
|
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
||||||
|
_mthca= mthca
|
||||||
|
.endif
|
||||||
|
_nfe= nfe
|
||||||
|
_nvd= nvd
|
||||||
|
_nvme= nvme
|
||||||
|
_nvram= nvram
|
||||||
|
_nxge= nxge
|
||||||
|
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
||||||
|
_padlock= padlock
|
||||||
|
.endif
|
||||||
|
_s3= s3
|
||||||
|
_tpm= tpm
|
||||||
|
_twa= twa
|
||||||
|
_vesa= vesa
|
||||||
|
_viawd= viawd
|
||||||
|
_virtio= virtio
|
||||||
|
_wpi= wpi
|
||||||
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
|
_wpifw= wpifw
|
||||||
|
.endif
|
||||||
|
_x86bios= x86bios
|
||||||
|
.endif
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if ${MACHINE_CPUARCH} == "amd64"
|
||||||
|
_ixl= ixl
|
||||||
|
_ixlv= ixlv
|
||||||
|
_ntb= ntb
|
||||||
|
_qlxge= qlxge
|
||||||
|
_qlxgb= qlxgb
|
||||||
|
_qlxgbe= qlxgbe
|
||||||
|
_sfxge= sfxge
|
||||||
|
_vmm= vmm
|
||||||
|
.endif
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} == "i386"
|
.if ${MACHINE_CPUARCH} == "i386"
|
||||||
# XXX some of these can move to the general case when de-i386'ed
|
# XXX some of these can move to the general case when de-i386'ed
|
||||||
# XXX some of these can move now, but are untested on other architectures.
|
# XXX some of these can move now, but are untested on other architectures.
|
||||||
_3dfx= 3dfx
|
_3dfx= 3dfx
|
||||||
_3dfx_linux= 3dfx_linux
|
_3dfx_linux= 3dfx_linux
|
||||||
_agp= agp
|
|
||||||
_aic= aic
|
_aic= aic
|
||||||
_an= an
|
|
||||||
_aout= aout
|
|
||||||
_apm= apm
|
_apm= apm
|
||||||
_arcnet= arcnet
|
_arcnet= arcnet
|
||||||
_bktr= bktr
|
|
||||||
_bxe= bxe
|
|
||||||
_cardbus= cardbus
|
|
||||||
_cbb= cbb
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
_ce= ce
|
_ce= ce
|
||||||
.endif
|
.endif
|
||||||
@ -493,159 +623,39 @@ _coff= coff
|
|||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
_cp= cp
|
_cp= cp
|
||||||
.endif
|
.endif
|
||||||
_cpuctl= cpuctl
|
|
||||||
_cpufreq= cpufreq
|
|
||||||
_cs= cs
|
_cs= cs
|
||||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
|
||||||
_cyclic= cyclic
|
|
||||||
.endif
|
|
||||||
_dpms= dpms
|
|
||||||
_drm= drm
|
|
||||||
_drm2= drm2
|
|
||||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
|
||||||
_dtrace= dtrace
|
|
||||||
.endif
|
|
||||||
_ed= ed
|
|
||||||
_elink= elink
|
_elink= elink
|
||||||
_em= em
|
|
||||||
_ep= ep
|
_ep= ep
|
||||||
_et= et
|
|
||||||
_exca= exca
|
|
||||||
_ext2fs= ext2fs
|
|
||||||
_fe= fe
|
_fe= fe
|
||||||
_glxiic= glxiic
|
_glxiic= glxiic
|
||||||
_glxsb= glxsb
|
_glxsb= glxsb
|
||||||
_i2c= i2c
|
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_ibcore= ibcore
|
|
||||||
.endif
|
|
||||||
_ibcs2= ibcs2
|
_ibcs2= ibcs2
|
||||||
_ie= ie
|
_ie= ie
|
||||||
_if_ndis= if_ndis
|
|
||||||
_igb= igb
|
|
||||||
_io= io
|
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_ipoib= ipoib
|
|
||||||
.endif
|
|
||||||
_linprocfs= linprocfs
|
|
||||||
_linsysfs= linsysfs
|
|
||||||
_linux= linux
|
|
||||||
_mse= mse
|
_mse= mse
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_mlx4= mlx4
|
|
||||||
_mlx4ib= mlx4ib
|
|
||||||
_mlxen= mlxen
|
|
||||||
_mthca= mthca
|
|
||||||
.endif
|
|
||||||
_ncr= ncr
|
_ncr= ncr
|
||||||
_ncv= ncv
|
_ncv= ncv
|
||||||
_ndis= ndis
|
|
||||||
_nsp= nsp
|
_nsp= nsp
|
||||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
|
||||||
_opensolaris= opensolaris
|
|
||||||
.endif
|
|
||||||
_pccard= pccard
|
|
||||||
_pcfclock= pcfclock
|
_pcfclock= pcfclock
|
||||||
_pst= pst
|
_pst= pst
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_rdma= rdma
|
|
||||||
.endif
|
|
||||||
_safe= safe
|
|
||||||
_sbni= sbni
|
_sbni= sbni
|
||||||
_scsi_low= scsi_low
|
|
||||||
_si= si
|
|
||||||
_smbfs= smbfs
|
|
||||||
_sound= sound
|
|
||||||
_speaker= speaker
|
|
||||||
_splash= splash
|
|
||||||
_sppp= sppp
|
|
||||||
_stg= stg
|
|
||||||
_streams= streams
|
_streams= streams
|
||||||
|
_stg= stg
|
||||||
_svr4= svr4
|
_svr4= svr4
|
||||||
_vxge= vxge
|
|
||||||
_wbwd= wbwd
|
|
||||||
_wds= wds
|
_wds= wds
|
||||||
_wi= wi
|
|
||||||
_xe= xe
|
_xe= xe
|
||||||
.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
|
|
||||||
_zfs= zfs
|
|
||||||
.endif
|
|
||||||
.if ${MACHINE} == "i386"
|
.if ${MACHINE} == "i386"
|
||||||
_aac= aac
|
|
||||||
_aacraid= aacraid
|
|
||||||
_acpi= acpi
|
|
||||||
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
|
||||||
_aesni= aesni
|
|
||||||
.endif
|
|
||||||
.if ${MK_EISA} != "no"
|
.if ${MK_EISA} != "no"
|
||||||
_ahb= ahb
|
_ahb= ahb
|
||||||
.endif
|
.endif
|
||||||
_amdsbwd= amdsbwd
|
|
||||||
_amdtemp= amdtemp
|
|
||||||
_arcmsr= arcmsr
|
|
||||||
_asmc= asmc
|
|
||||||
_asr= asr
|
_asr= asr
|
||||||
_bios= bios
|
_bios= bios
|
||||||
_ciss= ciss
|
|
||||||
_cm= cm
|
_cm= cm
|
||||||
_cmx= cmx
|
|
||||||
_coretemp= coretemp
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
||||||
_ctau= ctau
|
_ctau= ctau
|
||||||
.endif
|
.endif
|
||||||
_dpt= dpt
|
_dpt= dpt
|
||||||
_ex= ex
|
_ex= ex
|
||||||
.if ${MK_SOURCELESS_HOST} != "no"
|
|
||||||
_hpt27xx= hpt27xx
|
|
||||||
.endif
|
|
||||||
_hptiop= hptiop
|
|
||||||
.if ${MK_SOURCELESS_HOST} != "no"
|
|
||||||
_hptmv= hptmv
|
|
||||||
_hptnr= hptnr
|
|
||||||
_hptrr= hptrr
|
|
||||||
.endif
|
|
||||||
_hyperv= hyperv
|
|
||||||
_ichwd= ichwd
|
|
||||||
_ida= ida
|
|
||||||
_iir= iir
|
|
||||||
_ipmi= ipmi
|
|
||||||
_ips= ips
|
|
||||||
_ipw= ipw
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_ipwfw= ipwfw
|
|
||||||
.endif
|
|
||||||
_isci= isci
|
|
||||||
_iwi= iwi
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_iwifw= iwifw
|
|
||||||
.endif
|
|
||||||
_iwn= iwn
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_iwnfw= iwnfw
|
|
||||||
.endif
|
|
||||||
_ixgb= ixgb
|
|
||||||
_ixgbe= ixgbe
|
|
||||||
_mly= mly
|
|
||||||
_nfe= nfe
|
|
||||||
_nvd= nvd
|
|
||||||
_nvme= nvme
|
|
||||||
_nvram= nvram
|
|
||||||
_nxge= nxge
|
|
||||||
_tpm= tpm
|
|
||||||
_viawd= viawd
|
|
||||||
_wl= wl
|
_wl= wl
|
||||||
_wpi= wpi
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_wpifw= wpifw
|
|
||||||
.endif
|
|
||||||
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
|
||||||
_padlock= padlock
|
|
||||||
.endif
|
|
||||||
_s3= s3
|
|
||||||
_twa= twa
|
|
||||||
_vesa= vesa
|
|
||||||
_virtio= virtio
|
|
||||||
_x86bios= x86bios
|
|
||||||
.elif ${MACHINE} == "pc98"
|
.elif ${MACHINE} == "pc98"
|
||||||
_canbepm= canbepm
|
_canbepm= canbepm
|
||||||
_canbus= canbus
|
_canbus= canbus
|
||||||
@ -655,144 +665,6 @@ _snc= snc
|
|||||||
.endif
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} == "amd64"
|
|
||||||
_aac= aac
|
|
||||||
_aacraid= aacraid
|
|
||||||
_aout= aout
|
|
||||||
_acpi= acpi
|
|
||||||
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
|
||||||
_aesni= aesni
|
|
||||||
.endif
|
|
||||||
_agp= agp
|
|
||||||
_an= an
|
|
||||||
_amdsbwd= amdsbwd
|
|
||||||
_amdtemp= amdtemp
|
|
||||||
_arcmsr= arcmsr
|
|
||||||
_asmc= asmc
|
|
||||||
_bktr= bktr
|
|
||||||
_bxe= bxe
|
|
||||||
_cardbus= cardbus
|
|
||||||
_cbb= cbb
|
|
||||||
_cmx= cmx
|
|
||||||
_ciss= ciss
|
|
||||||
_coretemp= coretemp
|
|
||||||
_cpuctl= cpuctl
|
|
||||||
_cpufreq= cpufreq
|
|
||||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
|
||||||
_cyclic= cyclic
|
|
||||||
.endif
|
|
||||||
_dpms= dpms
|
|
||||||
_drm= drm
|
|
||||||
_drm2= drm2
|
|
||||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
|
||||||
_dtrace= dtrace
|
|
||||||
.endif
|
|
||||||
_ed= ed
|
|
||||||
_et= et
|
|
||||||
_em= em
|
|
||||||
_exca= exca
|
|
||||||
_ext2fs= ext2fs
|
|
||||||
.if ${MK_SOURCELESS_HOST} != "no"
|
|
||||||
_hpt27xx= hpt27xx
|
|
||||||
.endif
|
|
||||||
_hptiop= hptiop
|
|
||||||
.if ${MK_SOURCELESS_HOST} != "no"
|
|
||||||
_hptmv= hptmv
|
|
||||||
_hptnr= hptnr
|
|
||||||
_hptrr= hptrr
|
|
||||||
.endif
|
|
||||||
_hyperv= hyperv
|
|
||||||
_i2c= i2c
|
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_ibcore= ibcore
|
|
||||||
.endif
|
|
||||||
_ichwd= ichwd
|
|
||||||
_ida= ida
|
|
||||||
_if_ndis= if_ndis
|
|
||||||
_igb= igb
|
|
||||||
_iir= iir
|
|
||||||
_io= io
|
|
||||||
_ipmi= ipmi
|
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_ipoib= ipoib
|
|
||||||
.endif
|
|
||||||
_ips= ips
|
|
||||||
_ipw= ipw
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_ipwfw= ipwfw
|
|
||||||
.endif
|
|
||||||
_isci= isci
|
|
||||||
_iwi= iwi
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_iwifw= iwifw
|
|
||||||
.endif
|
|
||||||
_iwn= iwn
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_iwnfw= iwnfw
|
|
||||||
.endif
|
|
||||||
_ixgb= ixgb
|
|
||||||
_ixgbe= ixgbe
|
|
||||||
_ixl= ixl
|
|
||||||
_ixlv= ixlv
|
|
||||||
_linprocfs= linprocfs
|
|
||||||
_linsysfs= linsysfs
|
|
||||||
_linux= linux
|
|
||||||
_mly= mly
|
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_mlx4= mlx4
|
|
||||||
_mlx4ib= mlx4ib
|
|
||||||
_mlxen= mlxen
|
|
||||||
_mthca= mthca
|
|
||||||
.endif
|
|
||||||
_ndis= ndis
|
|
||||||
_nfe= nfe
|
|
||||||
_ntb= ntb
|
|
||||||
_nvd= nvd
|
|
||||||
_nvme= nvme
|
|
||||||
_nvram= nvram
|
|
||||||
_nxge= nxge
|
|
||||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
|
||||||
_opensolaris= opensolaris
|
|
||||||
.endif
|
|
||||||
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
|
||||||
_padlock= padlock
|
|
||||||
.endif
|
|
||||||
_pccard= pccard
|
|
||||||
_qlxge= qlxge
|
|
||||||
_qlxgb= qlxgb
|
|
||||||
_qlxgbe= qlxgbe
|
|
||||||
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
||||||
_rdma= rdma
|
|
||||||
.endif
|
|
||||||
_s3= s3
|
|
||||||
_safe= safe
|
|
||||||
_scsi_low= scsi_low
|
|
||||||
_sfxge= sfxge
|
|
||||||
_si= si
|
|
||||||
_smbfs= smbfs
|
|
||||||
_sound= sound
|
|
||||||
_speaker= speaker
|
|
||||||
_splash= splash
|
|
||||||
_sppp= sppp
|
|
||||||
_tpm= tpm
|
|
||||||
_twa= twa
|
|
||||||
_vesa= vesa
|
|
||||||
_viawd= viawd
|
|
||||||
_virtio= virtio
|
|
||||||
_vmm= vmm
|
|
||||||
_vxge= vxge
|
|
||||||
_x86bios= x86bios
|
|
||||||
_wbwd= wbwd
|
|
||||||
_wi= wi
|
|
||||||
_wpi= wpi
|
|
||||||
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
||||||
_wpifw= wpifw
|
|
||||||
.endif
|
|
||||||
.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
|
|
||||||
_zfs= zfs
|
|
||||||
.endif
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if ${MACHINE_CPUARCH} == "arm"
|
.if ${MACHINE_CPUARCH} == "arm"
|
||||||
_cfi= cfi
|
_cfi= cfi
|
||||||
_cpsw= cpsw
|
_cpsw= cpsw
|
||||||
@ -816,12 +688,12 @@ _dtrace= dtrace
|
|||||||
.endif
|
.endif
|
||||||
_exca= exca
|
_exca= exca
|
||||||
_nvram= powermac_nvram
|
_nvram= powermac_nvram
|
||||||
_pccard= pccard
|
|
||||||
_smbfs= smbfs
|
|
||||||
_sound= sound
|
|
||||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
||||||
_opensolaris= opensolaris
|
_opensolaris= opensolaris
|
||||||
.endif
|
.endif
|
||||||
|
_pccard= pccard
|
||||||
|
_smbfs= smbfs
|
||||||
|
_sound= sound
|
||||||
_wi= wi
|
_wi= wi
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
@ -846,6 +718,7 @@ _sound= sound
|
|||||||
_zfs= zfs
|
_zfs= zfs
|
||||||
.endif
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.for reject in ${WITHOUT_MODULES}
|
.for reject in ${WITHOUT_MODULES}
|
||||||
|
Loading…
Reference in New Issue
Block a user