From owner-svn-src-head@FreeBSD.ORG Wed Mar 18 05:04:50 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DA1ED89; Wed, 18 Mar 2015 05:04:50 +0000 (UTC) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.69.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cell.glebius.int.ru", Issuer "cell.glebius.int.ru" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BA715941; Wed, 18 Mar 2015 05:04:49 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.9/8.14.9) with ESMTP id t2I54lZM061879 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 18 Mar 2015 08:04:47 +0300 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.9/8.14.9/Submit) id t2I54lev061878; Wed, 18 Mar 2015 08:04:47 +0300 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Wed, 18 Mar 2015 08:04:47 +0300 From: Gleb Smirnoff To: Jack F Vogel Subject: Re: svn commit: r280197 - in head/sys: dev/ixgbe modules Message-ID: <20150318050447.GX17947@FreeBSD.org> References: <201503172240.t2HMepgD058989@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201503172240.t2HMepgD058989@svn.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org 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, 18 Mar 2015 05:04:50 -0000 Jack, On Tue, Mar 17, 2015 at 10:40:51PM +0000, Jack F Vogel wrote: J> Author: jfv J> Date: Tue Mar 17 22:40:50 2015 J> New Revision: 280197 J> URL: https://svnweb.freebsd.org/changeset/base/280197 J> J> Log: J> Resolve a few build issues, add module directories back into Makefile, J> then correct a NETMAP problem resulting from the split, and finally J> temporarily disable the X550 functionality. ... J> Modified: head/sys/modules/Makefile J> ============================================================================== J> --- head/sys/modules/Makefile Tue Mar 17 22:00:11 2015 (r280196) J> +++ head/sys/modules/Makefile Tue Mar 17 22:40:50 2015 (r280197) J> @@ -175,6 +175,8 @@ SUBDIR= \ J> ${_iwn} \ J> ${_iwnfw} \ J> ${_ixgb} \ J> + ${_ix} \ J> + ${_ixv} \ J> ${_ixl} \ J> ${_ixlv} \ J> jme \ J> This doesn't enable build of modules, since you added empty variables. You also need to initialize these variables at line 586, assuming the drivers build on amd64 and i386. In case if they work on amd64 only, then at line 623. -- Totus tuus, Glebius.