svn commit: r256430 - head/release

Glen Barber gjb at FreeBSD.org
Sun Oct 13 15:49:50 UTC 2013


Author: gjb
Date: Sun Oct 13 15:49:50 2013
New Revision: 256430
URL: http://svnweb.freebsd.org/changeset/base/256430

Log:
  Reduce disc1.iso image size by installing the userland with
  the WITHOUT_PROFILE=1 option set, trimming 56MB from the image.
  
  Approved by:	re (glebius)
  MFC after:	1 week
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/Makefile

Modified: head/release/Makefile
==============================================================================
--- head/release/Makefile	Sun Oct 13 13:47:49 2013	(r256429)
+++ head/release/Makefile	Sun Oct 13 15:49:50 2013	(r256430)
@@ -122,7 +122,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