From df47bf62a875b03124329fd584facb62bf240c67 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 27 Sep 2015 12:52:29 +0200 Subject: [PATCH 167/257] sys/modules: Don't (try to) build bxe if the user objects to binary blobs The module contains source-less microcode: sys/dev/bxe/5771[0-2]_init_values.c Obtained from: ElectroBSD PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204747 PR submission date: 2015-11-22 --- sys/modules/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 11a9e3d3a7e0..eafbe5bcf7ba 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -543,7 +543,9 @@ _an= an _aout= aout _bios= bios _bktr= bktr +.if ${MK_SOURCELESS_UCODE} != "no" _bxe= bxe +.endif _cardbus= cardbus _cbb= cbb _cpuctl= cpuctl -- 2.11.0