Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Aug 2014 16:09:06 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r270226 - in head/sys/modules: . si wds wl
Message-ID:  <201408201609.s7KG96U3080675@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Wed Aug 20 16:09:05 2014
New Revision: 270226
URL: http://svnweb.freebsd.org/changeset/base/270226

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

Added:
  head/sys/modules/si/
  head/sys/modules/si/Makefile   (contents, props changed)
  head/sys/modules/wds/
  head/sys/modules/wds/Makefile   (contents, props changed)
  head/sys/modules/wl/
  head/sys/modules/wl/Makefile   (contents, props changed)
Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Wed Aug 20 16:07:56 2014	(r270225)
+++ head/sys/modules/Makefile	Wed Aug 20 16:09:05 2014	(r270226)
@@ -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

Added: head/sys/modules/si/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/si/Makefile	Wed Aug 20 16:09:05 2014	(r270226)
@@ -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>

Added: head/sys/modules/wds/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/wds/Makefile	Wed Aug 20 16:09:05 2014	(r270226)
@@ -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>

Added: head/sys/modules/wl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/wl/Makefile	Wed Aug 20 16:09:05 2014	(r270226)
@@ -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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408201609.s7KG96U3080675>