From b185a77ca24005b2d64bdd01609b2fb5aa39870e Mon Sep 17 00:00:00 2001 From: emaste Date: Wed, 23 May 2018 13:59:37 +0000 Subject: [PATCH] sys/modules: don't build bxe,qlxgbe if the user objects to sourceless ucode MFC of r322682 and r322684 PR: 204747 Submitted by: Fabian Keil Obtained from: ElectroBSD git-svn-id: svn://svn.freebsd.org/base/stable/10@334096 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/modules/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index f104bfb8e..8c4f8bd86 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -500,7 +500,9 @@ _aout= aout _apm= apm _arcnet= arcnet _bktr= bktr +.if ${MK_SOURCELESS_UCODE} != "no" _bxe= bxe +.endif _cardbus= cardbus _cbb= cbb .if ${MK_SOURCELESS_UCODE} != "no" @@ -792,7 +794,9 @@ _pccard= pccard _pms= pms _qlxge= qlxge _qlxgb= qlxgb +.if ${MK_SOURCELESS_UCODE} != "no" _qlxgbe= qlxgbe +.endif _qlnx= qlnx _rdma= rdma _s3= s3 -- 2.45.0