svn commit: r216469 - head/release/powerpc

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Dec 15 23:43:26 UTC 2010


Author: nwhitehorn
Date: Wed Dec 15 23:43:25 2010
New Revision: 216469
URL: http://svn.freebsd.org/changeset/base/216469

Log:
  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.
  
  MFC after:	1 week

Modified:
  head/release/powerpc/mkisoimages.sh

Modified: head/release/powerpc/mkisoimages.sh
==============================================================================
--- head/release/powerpc/mkisoimages.sh	Wed Dec 15 23:24:34 2010	(r216468)
+++ head/release/powerpc/mkisoimages.sh	Wed Dec 15 23:43:25 2010	(r216469)
@@ -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-head mailing list