Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Jan 2015 10:46:53 -0700
From:      Warner Losh <imp@bsdimp.com>
To:        Garrett Cooper <ngie@FreeBSD.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers <src-committers@freebsd.org>
Subject:   Re: svn commit: r277681 - in head/sys: conf modules
Message-ID:  <0CF820AF-D73D-4CE8-BE5B-C4EBE5A9EFDA@bsdimp.com>
In-Reply-To: <201501250513.t0P5DGoc033955@svn.freebsd.org>
References:  <201501250513.t0P5DGoc033955@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
The number of MK_foo opts that are intruding into the kernel module =
builds is
starting to get out of hand. :( Especially since they are duplicative of =
the
MODULES_OVERRIDE functionality and are very unevenly applied.

Warner

> On Jan 24, 2015, at 10:13 PM, Garrett Cooper <ngie@FreeBSD.org> wrote:
>=20
> Author: ngie
> Date: Sun Jan 25 05:13:15 2015
> New Revision: 277681
> URL: https://svnweb.freebsd.org/changeset/base/277681
>=20
> Log:
>  Build cuse(4) if MK_CUSE !=3D no
>=20
>  MFC after: 1 week
>  Sponsored by: EMC / Isilon Storage Division
>=20
> Modified:
>  head/sys/conf/kern.opts.mk
>  head/sys/modules/Makefile
>=20
> Modified: head/sys/conf/kern.opts.mk
> =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
> --- head/sys/conf/kern.opts.mk	Sun Jan 25 04:58:41 2015	=
(r277680)
> +++ head/sys/conf/kern.opts.mk	Sun Jan 25 05:13:15 2015	=
(r277681)
> @@ -27,6 +27,7 @@ __DEFAULT_YES_OPTIONS =3D \
>     CCD \
>     CDDL \
>     CRYPT \
> +    CUSE \
>     FORMAT_EXTENSIONS \
>     INET \
>     INET6 \
>=20
> Modified: head/sys/modules/Makefile
> =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
> --- head/sys/modules/Makefile	Sun Jan 25 04:58:41 2015	=
(r277680)
> +++ head/sys/modules/Makefile	Sun Jan 25 05:13:15 2015	=
(r277681)
> @@ -86,7 +86,6 @@ SUBDIR=3D	\
> 	${_ct} \
> 	${_ctau} \
> 	ctl \
> -	cuse \
> 	${_cxgb} \
> 	${_cxgbe} \
> 	dc \
> @@ -393,6 +392,10 @@ _random=3D	random
> .endif
> .endif
>=20
> +.if ${MK_CUSE} !=3D "no" || defined(ALL_MODULES)
> +SUBDIR+=3D	cuse
> +.endif
> +
> .if (${MK_INET_SUPPORT} !=3D "no" || ${MK_INET6_SUPPORT} !=3D "no") || =
\
> 	defined(ALL_MODULES)
> _carp=3D		carp
>=20




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?0CF820AF-D73D-4CE8-BE5B-C4EBE5A9EFDA>