Add kernel modules for si(4), wds(4), and wl(4).

This commit is contained in:
John Baldwin 2014-08-20 16:09:05 +00:00
parent cef60f1868
commit e6e574516a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=270226
4 changed files with 37 additions and 0 deletions

View File

@ -310,6 +310,7 @@ SUBDIR= \
${_sf} \
${_sfxge} \
sge \
${_si} \
siba_bwn \
siftr \
siis \
@ -364,7 +365,9 @@ SUBDIR= \
${_vxge} \
wb \
${_wbwd} \
${_wds} \
${_wi} \
${_wl} \
wlan \
wlan_acl \
wlan_amrr \
@ -547,6 +550,7 @@ _rdma= rdma
_safe= safe
_sbni= sbni
_scsi_low= scsi_low
_si= si
_smbfs= smbfs
_sound= sound
_speaker= speaker
@ -557,6 +561,7 @@ _streams= streams
_svr4= svr4
_vxge= vxge
_wbwd= wbwd
_wds= wds
_wi= wi
_xe= xe
.if ${MK_ZFS} != "no" || defined(ALL_MODULES)
@ -625,6 +630,7 @@ _nvram= nvram
_nxge= nxge
_tpm= tpm
_viawd= viawd
_wl= wl
_wpi= wpi
.if ${MK_SOURCELESS_UCODE} != "no"
_wpifw= wpifw
@ -757,6 +763,7 @@ _s3= s3
_safe= safe
_scsi_low= scsi_low
_sfxge= sfxge
_si= si
_smbfs= smbfs
_sound= sound
_speaker= speaker

10
sys/modules/si/Makefile Normal file
View File

@ -0,0 +1,10 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/si
KMOD= si
SRCS= si.c si2_z280.c si3_t225.c si_eisa.c si_isa.c si_pci.c
SRCS+= bus_if.h device_if.h eisa_if.h isa_if.h pci_if.h
SRCS+= opt_compat.h opt_debug_si.h opt_eisa.h
.include <bsd.kmod.mk>

10
sys/modules/wds/Makefile Normal file
View File

@ -0,0 +1,10 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/wds
KMOD= wds
SRCS= wd7000.c
SRCS+= bus_if.h device_if.h isa_if.h
SRCS+= opt_cam.h
.include <bsd.kmod.mk>

10
sys/modules/wl/Makefile Normal file
View File

@ -0,0 +1,10 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/wl
KMOD= if_wl
SRCS= if_wl.c
SRCS+= bus_if.h device_if.h isa_if.h
SRCS+= opt_inet.h opt_wavelan.h
.include <bsd.kmod.mk>