Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Jul 2016 13:53:35 +0000
From:      Glen Barber <gjb@FreeBSD.org>
To:        Ronald Klop <ronald-lists@klop.ws>
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>
In-Reply-To: <op.ykwi7mj1kndu52@53555a16.cm-6-6b.dynamic.ziggo.nl>
References:  <201607191622.u6JGMoAZ062294@repo.freebsd.org> <op.ykwi7mj1kndu52@53555a16.cm-6-6b.dynamic.ziggo.nl>

next in thread | previous in thread | raw e-mail | index | archive | help

--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 <gjb@freebsd.org> 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--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20160720135335.GP65494>