svn commit: r259399 - stable/10/release

Glen Barber gjb at FreeBSD.org
Sat Dec 14 22:39:02 UTC 2013


Author: gjb
Date: Sat Dec 14 22:39:01 2013
New Revision: 259399
URL: http://svnweb.freebsd.org/changeset/base/259399

Log:
  MFC r256430:
    Reduce disc1.iso image size by installing the userland with
    the WITHOUT_PROFILE=1 option set, trimming 56MB from the image.
  
  This change was somehow lost during the 10.0-RELEASE cycle, and
  is intended for MFC to releng/10.0.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/10/release/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/release/Makefile
==============================================================================
--- stable/10/release/Makefile	Sat Dec 14 22:28:32 2013	(r259398)
+++ stable/10/release/Makefile	Sat Dec 14 22:39:01 2013	(r259399)
@@ -140,7 +140,8 @@ system: packagesystem
 # Install system
 	mkdir -p release
 	cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution \
-	    DESTDIR=${.OBJDIR}/release WITHOUT_RESCUE=1 WITHOUT_KERNEL_SYMBOLS=1
+		DESTDIR=${.OBJDIR}/release WITHOUT_RESCUE=1 WITHOUT_KERNEL_SYMBOLS=1 \
+		WITHOUT_PROFILE=1
 # Copy distfiles
 	mkdir -p release/usr/freebsd-dist
 	cp *.txz MANIFEST release/usr/freebsd-dist


More information about the svn-src-all mailing list