From owner-svn-src-head@FreeBSD.ORG Wed Aug 20 16:09:07 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CCD974C; Wed, 20 Aug 2014 16:09:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D4163224; Wed, 20 Aug 2014 16:09:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7KG96BM080679; Wed, 20 Aug 2014 16:09:06 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7KG96U3080675; Wed, 20 Aug 2014 16:09:06 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201408201609.s7KG96U3080675@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Wed, 20 Aug 2014 16:09:06 +0000 (UTC) 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 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Aug 2014 16:09:07 -0000 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 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 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