From owner-freebsd-mips@FreeBSD.ORG Wed May 20 12:54:31 2015 Return-Path: Delivered-To: freebsd-mips@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 DDC13738 for ; Wed, 20 May 2015 12:54:31 +0000 (UTC) Received: from phabric-backend.isc.freebsd.org (phabric-backend.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:406a:0:50:2]) (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 A6FCD13B7 for ; Wed, 20 May 2015 12:54:31 +0000 (UTC) Received: from phabric-backend.isc.freebsd.org (phabric-backend.isc.freebsd.org [127.0.1.5]) by phabric-backend.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id t4KCsVR1068829 for ; Wed, 20 May 2015 12:54:31 GMT (envelope-from daemon-user@phabric-backend.isc.freebsd.org) Received: (from daemon-user@localhost) by phabric-backend.isc.freebsd.org (8.14.9/8.14.9/Submit) id t4KCsVPf068828; Wed, 20 May 2015 12:54:31 GMT (envelope-from daemon-user) Date: Wed, 20 May 2015 12:54:31 +0000 To: freebsd-mips@freebsd.org From: "emaste (Ed Maste)" Subject: [Differential] [Closed] D2585: Avoid trying to build cxgbe module on MIPS Message-ID: <6b45234b176a3e90980e2abdb5ca7cd9@localhost.localdomain> X-Priority: 3 Thread-Topic: D2585: Avoid trying to build cxbge module on MIPS X-Herald-Rules: none X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-Cc: In-Reply-To: References: Thread-Index: MjE5ZGMwYjE2MTM3YWY0OWUxOWE5YTIyOTBhIFVchAc= Precedence: bulk X-Phabricator-Sent-This-Message: Yes X-Mail-Transport-Agent: MetaMTA X-Auto-Response-Suppress: All X-Phabricator-Mail-Tags: , MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="b1_6b45234b176a3e90980e2abdb5ca7cd9" X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 May 2015 12:54:32 -0000 --b1_6b45234b176a3e90980e2abdb5ca7cd9 Content-Type: text/plain; charset = "utf-8" Content-Transfer-Encoding: 8bit This revision was automatically updated to reflect the committed changes. Closed by commit rS283149: Avoid trying to build cxbge on 32-bit MIPS (authored by emaste). CHANGED PRIOR TO COMMIT https://reviews.freebsd.org/D2585?vs=5492&id=5508#toc REPOSITORY rS FreeBSD src repository REVISION DETAIL https://reviews.freebsd.org/D2585 AFFECTED FILES head/sys/modules/Makefile CHANGE DETAILS diff --git a/head/sys/modules/Makefile b/head/sys/modules/Makefile --- a/head/sys/modules/Makefile +++ b/head/sys/modules/Makefile @@ -456,6 +456,7 @@ .endif .if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \ + ${MACHINE_ARCH:C/mips(el)?/mips/} != "mips" && \ ${MACHINE_ARCH} != "powerpc" _cxgbe= cxgbe .endif EMAIL PREFERENCES https://reviews.freebsd.org/settings/panel/emailpreferences/ To: emaste, np, imp Cc: freebsd-mips --b1_6b45234b176a3e90980e2abdb5ca7cd9 Content-Type: text/x-patch; charset=utf-8; name="D2585.5508.patch" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="D2585.5508.patch" ZGlmZiAtLWdpdCBhL2hlYWQvc3lzL21vZHVsZXMvTWFrZWZpbGUgYi9oZWFkL3N5cy9tb2R1bGVz L01ha2VmaWxlCi0tLSBhL2hlYWQvc3lzL21vZHVsZXMvTWFrZWZpbGUKKysrIGIvaGVhZC9zeXMv bW9kdWxlcy9NYWtlZmlsZQpAQCAtNDU2LDYgKzQ1Niw3IEBACiAuZW5kaWYKIAogLmlmICR7TUtf U09VUkNFTEVTU19VQ09ERX0gIT0gIm5vIiAmJiAke01BQ0hJTkVfQ1BVQVJDSH0gIT0gImFybSIg JiYgXAorCSR7TUFDSElORV9BUkNIOkMvbWlwcyhlbCk/L21pcHMvfSAhPSAibWlwcyIgJiYgXAog CSR7TUFDSElORV9BUkNIfSAhPSAicG93ZXJwYyIKIF9jeGdiZT0JCWN4Z2JlCiAuZW5kaWYKCg== --b1_6b45234b176a3e90980e2abdb5ca7cd9--