From owner-svn-src-all@freebsd.org Wed Jul 20 13:53:37 2016 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 84C37B9EF6A; Wed, 20 Jul 2016 13:53:37 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7472519E2; Wed, 20 Jul 2016 13:53:37 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from FreeBSD.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by freefall.freebsd.org (Postfix) with ESMTP id 17A461A8F; Wed, 20 Jul 2016 13:53:37 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Date: Wed, 20 Jul 2016 13:53:35 +0000 From: Glen Barber To: Ronald Klop Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: Re: svn commit: r303027 - in stable/11/release: . scripts Message-ID: <20160720135335.GP65494@FreeBSD.org> References: <201607191622.u6JGMoAZ062294@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="WjWU9mUuKzTKEtBb" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event X-PEKBAC-Definition: Problem Exists, Keyboard Between Admin/Computer User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 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, 20 Jul 2016 13:53:37 -0000 --WjWU9mUuKzTKEtBb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable My apologies for not mentioning that in the commit log. I'd like to keep the PR open, though, since we're going to fix this differently for current. Glen On Wed, Jul 20, 2016 at 03:46:24PM +0200, Ronald Klop wrote: > Hi, I made this PR for the issue. >=20 > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211029 >=20 > Ronald. >=20 >=20 >=20 > On Tue, 19 Jul 2016 18:22:50 +0200, Glen Barber wrote: >=20 > >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 > >=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 > >--- 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=3D${.OBJDIR}/${.TARGET} MK_RESCUE=3Dno MK_KERNEL_SYMBOLS=3Dno= \ > >- MK_PROFILE=3Dno MK_SENDMAIL=3Dno MK_TESTS=3Dno MK_LIB32=3Dno \ > >- MK_DEBUG_FILES=3Dno > >+ MK_PROFILE=3Dno MK_MAIL=3Dno MK_TESTS=3Dno MK_LIB32=3Dno \ > >+ MK_DEBUG_FILES=3Dno MK_LLDB=3Dno \ > >+ MK_TOOLCHAIN=3Dno > > # 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 > >=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 > >--- 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=3Doff > > default_base_dbg=3Doff > > default_lib32_dbg=3Doff > > default_kernel_alt=3Doff > >-default_kernel_dbg=3Don > >+default_kernel_dbg=3Doff > > default_kernel_alt_dbg=3Doff > >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" >=20 --WjWU9mUuKzTKEtBb Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJXj4JUAAoJEAMUWKVHj+KT5koP/3ZCyB7+oN658CDlFo9aTjp+ Eg4fYGf6Kmn9wLgP/ohnX91gDgMf/RHR+4H8RtU4xKuKRoX04p1Mm5lwTnqvCfl+ HAhXIB5C6kihcbIc3zIbx/v4ItyqIwC3BTuJrD+1wMmxSsXBMJATVO6XnPIWFJdY V3k39ycF19RatdI0KGy9Tsnia4YFvesOWC9DYtj2iCJRiK6GjGyQeuxHZ01CUXea 8vIXzcIAbWQVmABNQwL57OShxIHEkVSuafjk5x0dYqbetKcdj4Arif8iCCcIyv1F fcEnR3VW18Dkgmuk4OeZgiLu4MBzt+mSgeFRUkq40lNUM8Q5gR92iL2K9A2dht9y I5GhiQrCR+gaeJSHQMCXxXMDA81+HPKwGtJy8kaoy3dYe/LbLbbursIxYiTjUGPH CRZr0SwHiL/piVxNloJ4dKGkAcUJdl3ZBTYANIkD8XwhNnw0GMkNUMqgT4gyUcFL bmygQXf/bz/ecZm8HBJq5cNnOwgy/ZN88CDUtNVwPXTPpTwCXwGG/F5dRrJO+cVD 0zTMHyjFsLjbDUQtPqHT5iFVnpJ2gUNPh7UE5zOKEYxKlenlB1wfOe7VcMNLz5LM D4jVqclwFiF739kX72fl7q342kZGfNziwNe3O6svW1m7QOUpnLIqFcQIg0cZ6t/5 Udnz8/zl2z1BEXHuaz0L =T+fX -----END PGP SIGNATURE----- --WjWU9mUuKzTKEtBb--