From owner-svn-src-stable-11@freebsd.org Wed Jul 20 13:46:34 2016 Return-Path: Delivered-To: svn-src-stable-11@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 A66D1B9EDB0; Wed, 20 Jul 2016 13:46:34 +0000 (UTC) (envelope-from ronald-lists@klop.ws) Received: from smarthost1.greenhost.nl (smarthost1.greenhost.nl [195.190.28.81]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 723BC154E; Wed, 20 Jul 2016 13:46:34 +0000 (UTC) (envelope-from ronald-lists@klop.ws) Received: from smtp.greenhost.nl ([213.108.104.138]) by smarthost1.greenhost.nl with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1bPrpR-0003vA-3n; Wed, 20 Jul 2016 15:46:25 +0200 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org, "Glen Barber" Subject: Re: svn commit: r303027 - in stable/11/release: . scripts References: <201607191622.u6JGMoAZ062294@repo.freebsd.org> Date: Wed, 20 Jul 2016 15:46:24 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Ronald Klop" Message-ID: In-Reply-To: <201607191622.u6JGMoAZ062294@repo.freebsd.org> User-Agent: Opera Mail/12.16 (FreeBSD) X-Authenticated-As-Hash: 398f5522cb258ce43cb679602f8cfe8b62a256d1 X-Virus-Scanned: by clamav at smarthost1.samage.net X-Spam-Level: / X-Spam-Score: -0.2 X-Spam-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED, BAYES_50 autolearn=disabled version=3.4.0 X-Scan-Signature: f0d5e446bfc5bbd6ce781899a390d841 X-BeenThere: svn-src-stable-11@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for only the 11-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jul 2016 13:46:34 -0000 Hi, I made this PR for the issue. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211029 Ronald. On Tue, 19 Jul 2016 18:22:50 +0200, Glen Barber wrote: > Author: gjb > Date: Tue Jul 19 16:22:50 2016 > New Revision: 303027 > URL: https://svnweb.freebsd.org/changeset/base/303027 > > Log: > Reduce the disc1.iso size from 850+M to just over 650M. > As a result of this change, the 'kernel-dbg.txz' distribution > is no longer provided on disc1.iso, and deselected by default > in bsdinstall(8). When 'kernel-dbg.txz' is selected, network > configuration happens before the installer proceeds, to fetch > the distribution from the mirrors. > This is a direct commit to stable/11, as there is intention > to solve this differently for 12.0-RELEASE. > Reviewed by: nwhitehorn (glanced at) > Approved by: re (hrs) > Sponsored by: The FreeBSD Foundation > > Modified: > stable/11/release/Makefile > stable/11/release/scripts/make-manifest.sh > > Modified: stable/11/release/Makefile > ============================================================================== > --- stable/11/release/Makefile Tue Jul 19 16:02:07 2016 (r303026) > +++ stable/11/release/Makefile Tue Jul 19 16:22:50 2016 (r303027) > @@ -172,11 +172,12 @@ disc1: packagesystem > mkdir -p ${.TARGET} > cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution \ > DESTDIR=${.OBJDIR}/${.TARGET} MK_RESCUE=no MK_KERNEL_SYMBOLS=no \ > - MK_PROFILE=no MK_SENDMAIL=no MK_TESTS=no MK_LIB32=no \ > - MK_DEBUG_FILES=no > + MK_PROFILE=no MK_MAIL=no MK_TESTS=no MK_LIB32=no \ > + MK_DEBUG_FILES=no MK_LLDB=no \ > + MK_TOOLCHAIN=no > # Copy distfiles > mkdir -p ${.TARGET}/usr/freebsd-dist > - for dist in MANIFEST $$(ls *.txz | grep -vE -- '(base|lib32)-dbg'); \ > + for dist in MANIFEST $$(ls *.txz | grep -vE -- > '(base|lib32|kernel)-dbg'); \ > do cp $${dist} ${.TARGET}/usr/freebsd-dist; \ > done > # Copy documentation, if generated > > Modified: stable/11/release/scripts/make-manifest.sh > ============================================================================== > --- stable/11/release/scripts/make-manifest.sh Tue Jul 19 16:02:07 > 2016 (r303026) > +++ stable/11/release/scripts/make-manifest.sh Tue Jul 19 16:22:50 > 2016 (r303027) > @@ -36,7 +36,7 @@ default_tests=off > default_base_dbg=off > default_lib32_dbg=off > default_kernel_alt=off > -default_kernel_dbg=on > +default_kernel_dbg=off > default_kernel_alt_dbg=off > for i in ${*}; do > _______________________________________________ > svn-src-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-src-all > To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"