From owner-svn-src-all@FreeBSD.ORG Thu Aug 28 17:40:20 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16525CAB; Thu, 28 Aug 2014 17:40:20 +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 027761835; Thu, 28 Aug 2014 17:40:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7SHeJwi071419; Thu, 28 Aug 2014 17:40:19 GMT (envelope-from jfv@FreeBSD.org) Received: (from jfv@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7SHeJPN071417; Thu, 28 Aug 2014 17:40:19 GMT (envelope-from jfv@FreeBSD.org) Message-Id: <201408281740.s7SHeJPN071417@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jfv set sender to jfv@FreeBSD.org using -f From: Jack F Vogel Date: Thu, 28 Aug 2014 17:40:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r270755 - in head/sys: conf modules X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Aug 2014 17:40:20 -0000 Author: jfv Date: Thu Aug 28 17:40:19 2014 New Revision: 270755 URL: http://svnweb.freebsd.org/changeset/base/270755 Log: Add XL710 device entries to NOTES, and directories to the module Makefile so they will be built. MFC after: 1 day Modified: head/sys/conf/NOTES head/sys/modules/Makefile Modified: head/sys/conf/NOTES ============================================================================== --- head/sys/conf/NOTES Thu Aug 28 16:26:13 2014 (r270754) +++ head/sys/conf/NOTES Thu Aug 28 17:40:19 2014 (r270755) @@ -2094,6 +2094,8 @@ device em # Intel Pro/1000 Gigabit Eth device igb # Intel Pro/1000 PCIE Gigabit Ethernet device ixgb # Intel Pro/10Gbe PCI-X Ethernet device ixgbe # Intel Pro/10Gbe PCIE Ethernet +device ixl # Intel XL710 40Gbe PCIE Ethernet +device ixlv # Intel XL710 40Gbe VF PCIE Ethernet device le # AMD Am7900 LANCE and Am79C9xx PCnet device mxge # Myricom Myri-10G 10GbE NIC device nxge # Neterion Xframe 10GbE Server/Storage Adapter Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Thu Aug 28 16:26:13 2014 (r270754) +++ head/sys/modules/Makefile Thu Aug 28 17:40:19 2014 (r270755) @@ -180,6 +180,8 @@ SUBDIR= \ ${_iwnfw} \ ${_ixgb} \ ${_ixgbe} \ + ${_ixl} \ + ${_ixlv} \ jme \ joy \ kbdmux \ @@ -622,6 +624,8 @@ _iwnfw= iwnfw .endif _ixgb= ixgb _ixgbe= ixgbe +_ixl= ixl +_ixlv= ixlv _mly= mly _nfe= nfe _nvd= nvd @@ -729,6 +733,8 @@ _iwnfw= iwnfw .endif _ixgb= ixgb _ixgbe= ixgbe +_ixl= ixl +_ixlv= ixlv _linprocfs= linprocfs _linsysfs= linsysfs _linux= linux