From owner-svn-src-all@FreeBSD.ORG Fri Jan 16 02:43:50 2015 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D39B27D; Fri, 16 Jan 2015 02:43:50 +0000 (UTC) Received: from mail-pd0-x22c.google.com (mail-pd0-x22c.google.com [IPv6:2607:f8b0:400e:c02::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5724D7B5; Fri, 16 Jan 2015 02:43:50 +0000 (UTC) Received: by mail-pd0-f172.google.com with SMTP id y13so19915468pdi.3; Thu, 15 Jan 2015 18:43:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:mail-followup-to :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=7J26gIiiMQhhphjWPYZRGCWXS6CIUQqTgAOcBN7mYvo=; b=XPKkee8jecE/aNpz04iQllQsnm/MAvs8N6/scTr/KjtvKHmAph8RmNFbU5O7uq1GiW EF+SwGDuUSgYI9b5pPrtzFHi/NY/YNLWqC6U+eeLi3LD0+dh3/hhjJKlVEueoUIKSvNx s/AYCt7SvaNTIpYRYdUV2/ZMNuDiCDn+3evXVlHUZRa2vEQHC8CGy+BkT7Sxfsh0swDA BgRP5mOK0tP/DwjhmHOmq0dSwpuWgtxDwUI2M1g5/s17sP0ficB8B2OrEeOfwZGaRJA2 o5Q3hutgQ1H5jxRwpEk3z4kYuexhZu8xn/SjpZXY+Afzu5VA59hMvBv7d8+HZz6ns3nU LbuQ== X-Received: by 10.70.135.165 with SMTP id pt5mr18606249pdb.37.1421376229923; Thu, 15 Jan 2015 18:43:49 -0800 (PST) Received: from ox ([24.6.44.228]) by mx.google.com with ESMTPSA id qv9sm2618006pab.27.2015.01.15.18.43.47 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 15 Jan 2015 18:43:48 -0800 (PST) Sender: Navdeep Parhar Date: Thu, 15 Jan 2015 18:43:40 -0800 From: Navdeep Parhar To: Nathan Whitehorn Subject: Re: svn commit: r277227 - in head/sys: amd64/conf arm/conf conf modules powerpc/conf Message-ID: <20150116024340.GA4923@ox> Mail-Followup-To: Nathan Whitehorn , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201501160139.t0G1dPu5029070@svn.freebsd.org> <54B878B7.7050206@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <54B878B7.7050206@freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org 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: Fri, 16 Jan 2015 02:43:50 -0000 On Thu, Jan 15, 2015 at 06:34:31PM -0800, Nathan Whitehorn wrote: > > On 01/15/15 17:39, Navdeep Parhar wrote: > >Author: np > >Date: Fri Jan 16 01:39:24 2015 > >New Revision: 277227 > >URL: https://svnweb.freebsd.org/changeset/base/277227 > > > >Log: > > Plug cxgbe(4) back into !powerpc && !arm builds, instead of building it > > on amd64 only. > > > >Modified: > > head/sys/amd64/conf/NOTES > > head/sys/arm/conf/NOTES > > head/sys/conf/NOTES > > head/sys/modules/Makefile > > head/sys/powerpc/conf/NOTES > > > > > > > >Modified: head/sys/modules/Makefile > >============================================================================== > >--- head/sys/modules/Makefile Fri Jan 16 01:32:40 2015 (r277226) > >+++ head/sys/modules/Makefile Fri Jan 16 01:39:24 2015 (r277227) > >@@ -443,7 +443,8 @@ _ti= ti > > _txp= txp > > .endif > >-.if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} == "amd64" > >+.if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \ > >+ ${MACHINE_CPUARCH} != "powerpc" > > _cxgbe= cxgbe > > .endif > > Don't you want MACHINE_ARCH != powerpc here rather than > MACHINE_CPUARCH if it builds on powerpc64? > -Nathan Hmm, I think you're right. I'll try building with MACHINE_ARCH and commit if it succeeds. Regards, Navdeep