From owner-svn-src-all@freebsd.org Thu Jan 26 18:05:33 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09EF5CC2BD8; Thu, 26 Jan 2017 18:05:33 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 C07201303; Thu, 26 Jan 2017 18:05:32 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0QI5VEo028933; Thu, 26 Jan 2017 18:05:31 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QI5VoB028931; Thu, 26 Jan 2017 18:05:31 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201701261805.v0QI5VoB028931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Thu, 26 Jan 2017 18:05:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r312821 - in head/sys/modules: . usb 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.23 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, 26 Jan 2017 18:05:33 -0000 Author: emaste Date: Thu Jan 26 18:05:31 2017 New Revision: 312821 URL: https://svnweb.freebsd.org/changeset/base/312821 Log: mips: exclude modules that fail to build Modified: head/sys/modules/Makefile head/sys/modules/usb/Makefile Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Thu Jan 26 17:59:54 2017 (r312820) +++ head/sys/modules/Makefile Thu Jan 26 18:05:31 2017 (r312821) @@ -503,13 +503,16 @@ _bce= bce _fatm= fatm _fxp= fxp _ispfw= ispfw +_sf= sf +_ti= ti +_txp= txp + +.if ${MACHINE_CPUARCH} != "mips" _mwlfw= mwlfw _otusfw= otusfw _ralfw= ralfw _rtwnfw= rtwnfw -_sf= sf -_ti= ti -_txp= txp +.endif .endif .if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \ Modified: head/sys/modules/usb/Makefile ============================================================================== --- head/sys/modules/usb/Makefile Thu Jan 26 17:59:54 2017 (r312820) +++ head/sys/modules/usb/Makefile Thu Jan 26 18:05:31 2017 (r312821) @@ -70,9 +70,12 @@ _uath= uath _zyd= zyd _kue= kue _run= run -_runfw= runfw _rsu= rsu + +.if ${MACHINE_CPUARCH} != "mips" _rsufw= rsufw +_runfw= runfw +.endif .endif .if ${MACHINE_CPUARCH} == "amd64"