From owner-svn-src-all@freebsd.org Sun Jul 5 20:00:21 2015 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 CAB84A353 for ; Sun, 5 Jul 2015 20:00:21 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1A25D103C for ; Sun, 5 Jul 2015 20:00:20 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: by wiwl6 with SMTP id l6so267425380wiw.0 for ; Sun, 05 Jul 2015 13:00:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=of2vXB4jap4R5D28fCS5e6RnYWtgR3O/uXaQ22x6xQw=; b=bZuwoIdTQ6ilnKA4kQlD0yhrR1sedPkAjDLNja3pW1Q8Eu1qLg5DbbOvhMPRqZmk97 XvxicfPYbsU+MbJzHZLe4YAlGIdjSUv4qYL4VB19g+6zdaPMgPrQ4rPwwRBPfbk4GHmv jHZfTMBZy7BS4+M71h+QU2i0aIeFPa+NkjduHfaa8PwWwwMCLU4M7od9QwSmVPpdERLw GiPwe+qapyWQP65W0zaH4tnjd6pzg3taBp0Dbipau3xFFBo7tBx0HtLBvcaBnEwm+k+e i6yINv5v3pNWxRgFTKkimVHjTyGTxZMUdPzvh0lPi0z7uN5gy4dHDVxkQtDqwa4NjAo/ a7wA== X-Gm-Message-State: ALoCoQkZo2xzEEYKTQZIIebcv6/D/aENZF68uD0TQLhcD+bdQJabZIMn5ZgTZEx+zV1iMxsl7hNG MIME-Version: 1.0 X-Received: by 10.194.71.226 with SMTP id y2mr40281564wju.34.1436125984828; Sun, 05 Jul 2015 12:53:04 -0700 (PDT) Received: by 10.194.81.106 with HTTP; Sun, 5 Jul 2015 12:53:04 -0700 (PDT) In-Reply-To: <20150705194954.GA8523@funkthat.com> References: <201507051415.t65EFxWd044357@repo.freebsd.org> <20150705194954.GA8523@funkthat.com> Date: Sun, 5 Jul 2015 21:53:04 +0200 Message-ID: Subject: Re: svn commit: r285160 - head/sys/conf From: Oliver Pinter To: John-Mark Gurney Cc: Ian Lepore , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Sun, 05 Jul 2015 20:00:22 -0000 On 7/5/15, John-Mark Gurney wrote: > Ian Lepore wrote this message on Sun, Jul 05, 2015 at 14:15 +0000: >> Author: ian >> Date: Sun Jul 5 14:15:58 2015 >> New Revision: 285160 >> URL: https://svnweb.freebsd.org/changeset/base/285160 >> >> Log: >> Ensure all the required files get built when you include the IPSEC >> option. > > Umm.. This looks more like that IPSEC should require that the crypto > device be specified instead of fixing it this way... > Is there any way to specify implication rules to config? Ergo if I specify IPSEC without device crypto, then it's auto enable/include. Similar to linux's Kconfig framework.. >> Modified: >> head/sys/conf/files >> >> Modified: head/sys/conf/files >> ============================================================================== >> --- head/sys/conf/files Sun Jul 5 11:42:01 2015 (r285159) >> +++ head/sys/conf/files Sun Jul 5 14:15:58 2015 (r285160) >> @@ -3902,17 +3902,17 @@ ofed/drivers/infiniband/hw/mthca/mthca_u >> >> # crypto support >> opencrypto/cast.c optional crypto | ipsec >> -opencrypto/criov.c optional crypto >> -opencrypto/crypto.c optional crypto >> +opencrypto/criov.c optional crypto | ipsec >> +opencrypto/crypto.c optional crypto | ipsec >> opencrypto/cryptodev.c optional cryptodev >> -opencrypto/cryptodev_if.m optional crypto >> -opencrypto/cryptosoft.c optional crypto >> -opencrypto/cryptodeflate.c optional crypto >> -opencrypto/gmac.c optional crypto >> -opencrypto/gfmult.c optional crypto >> +opencrypto/cryptodev_if.m optional crypto | ipsec >> +opencrypto/cryptosoft.c optional crypto | ipsec >> +opencrypto/cryptodeflate.c optional crypto | ipsec >> +opencrypto/gmac.c optional crypto | ipsec >> +opencrypto/gfmult.c optional crypto | ipsec >> opencrypto/rmd160.c optional crypto | ipsec >> -opencrypto/skipjack.c optional crypto >> -opencrypto/xform.c optional crypto >> +opencrypto/skipjack.c optional crypto | ipsec >> +opencrypto/xform.c optional crypto | ipsec >> rpc/auth_none.c optional krpc | nfslockd | nfscl | nfsd >> rpc/auth_unix.c optional krpc | nfslockd | nfscl | nfsd >> rpc/authunix_prot.c optional krpc | nfslockd | nfscl | nfsd > > -- > John-Mark Gurney Voice: +1 415 225 5579 > > "All that I will do, has been done, All that I have, has not." > _______________________________________________ > svn-src-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org" >