From owner-svn-src-all@freebsd.org Wed Sep 2 12:50:34 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 883FC9C7528; Wed, 2 Sep 2015 12:50:34 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.69.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cell.glebius.int.ru", Issuer "cell.glebius.int.ru" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 133071A60; Wed, 2 Sep 2015 12:50:33 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.15.2/8.15.2) with ESMTPS id t82CoODJ008776 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 2 Sep 2015 15:50:24 +0300 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.15.2/8.15.2/Submit) id t82CoO3o008775; Wed, 2 Sep 2015 15:50:24 +0300 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Wed, 2 Sep 2015 15:50:24 +0300 From: Gleb Smirnoff To: Alexander Kabaev Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r287358 - head Message-ID: <20150902125024.GH1023@FreeBSD.org> References: <201509011159.t81BxCkm072208@repo.freebsd.org> <20150901224438.32e982dd@kan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150901224438.32e982dd@kan> User-Agent: Mutt/1.5.23 (2014-03-12) 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: Wed, 02 Sep 2015 12:50:34 -0000 Alexander, On Tue, Sep 01, 2015 at 10:44:38PM -0400, Alexander Kabaev wrote: A> On Tue, 1 Sep 2015 11:59:12 +0000 (UTC) A> > Log: A> > Not only build with buildworld, but also install with installworld A> > all alternative kernels. A> > A> > Sponsored by: Netflix A> > Sponsored by: Nginx, Inc. A> > A> > Modified: A> > head/Makefile.inc1 A> > A> > Modified: head/Makefile.inc1 A> > ============================================================================== A> > --- head/Makefile.inc1 Tue Sep 1 11:46:13 2015 A> > (r287357) +++ head/Makefile.inc1 Tue Sep 1 11:59:12 A> > 2015 (r287358) @@ -1127,6 +1127,14 @@ reinstallkernel A> > reinstallkernel.debug: _ cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ A> > ${CROSSENV} PATH=${TMPPATH} \ A> > ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} A> > ${.TARGET:S/kernel//} +.for _kernel in ${BUILDKERNELS:[2..-1]} A> > + @echo A> > "--------------------------------------------------------------" A> > + @echo ">>> Installing kernel ${_kernel}" A> > + @echo A> > "--------------------------------------------------------------" A> > + cd ${KRNLOBJDIR}/${_kernel}; \ A> > + ${CROSSENV} PATH=${TMPPATH} \ A> > + ${MAKE} ${IMAKE_INSTALL} A> > KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//} +.endfor A> > A> > distributekernel distributekernel.debug: A> > .if empty(INSTALLKERNEL) A> A> This is probably not doing what you think it is doing. Now, when A> installing my kernel, built from config file , I get it installed A> into /boot/kernel, which is good and normal, and I get an extra and A> highly undesired copy in boot/kernel.. That one I didn't ask for A> and would rather see it gone. Does that happen to you, or do you just suppose that this is going to happen looking at the code? -- Totus tuus, Glebius.