Date: Thu, 26 Jan 2017 18:05:31 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r312821 - in head/sys/modules: . usb Message-ID: <201701261805.v0QI5VoB028931@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701261805.v0QI5VoB028931>