svn commit: r216659 - stable/8/release/powerpc

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Dec 22 14:46:39 UTC 2010


Author: nwhitehorn
Date: Wed Dec 22 14:46:38 2010
New Revision: 216659
URL: http://svn.freebsd.org/changeset/base/216659

Log:
  MFC r216469:
  
  Fix the overflowing livefs ISO by removing man pages from the HFS part of
  the hybrid disk. This is a stopgap until a better solution can be found,
  but lets the powerpc release build complete for the time being.
  
  Approved by:	re (kensmith)

Modified:
  stable/8/release/powerpc/mkisoimages.sh
Directory Properties:
  stable/8/release/powerpc/   (props changed)

Modified: stable/8/release/powerpc/mkisoimages.sh
==============================================================================
--- stable/8/release/powerpc/mkisoimages.sh	Wed Dec 22 14:45:43 2010	(r216658)
+++ stable/8/release/powerpc/mkisoimages.sh	Wed Dec 22 14:46:38 2010	(r216659)
@@ -25,7 +25,7 @@
 
 if [ "x$1" = "x-b" ]; then
 	cp /usr/src/release/powerpc/boot.tbxi ${4}/boot
-	bootable="-hfs-bless ${4}/boot -map /usr/src/release/powerpc/hfs.map"
+	bootable="-hfs -hfs-bless ${4}/boot -map /usr/src/release/powerpc/hfs.map -hide-hfs ${4}/usr/share/man"
 	shift
 else
 	bootable=""
@@ -54,4 +54,4 @@ fi
 LABEL=$1; shift
 NAME=$1; shift
 
-mkisofs $bootable -r -hfs -part -no-desktop -hfs-volid $LABEL -l -J -allow-leading-dots -o $NAME $*
+mkisofs $bootable -l -r -part -no-desktop -V $LABEL -o $NAME $*


More information about the svn-src-all mailing list