From: Heiko Z. <smi...@us...> - 2004-06-23 23:54:40
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3266/scripts/scripts Modified Files: Tag: rel-1-2-patches custom-cd Log Message: custom-cd now correctly used ziso format (Heiko / Roberto) Index: custom-cd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/custom-cd,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -d -r1.3 -r1.3.2.1 --- custom-cd 21 Oct 2003 13:13:11 -0000 1.3 +++ custom-cd 23 Jun 2004 23:54:32 -0000 1.3.2.1 @@ -114,6 +114,18 @@ rm -fr $TEMP/boot/boot.cat $TEMP/rr_moved cp -a $NEW/* $TEMP +# +mkzftree $TEMP $TEMP.z +cp -fdpR $MP/boot/* $TEMP.z/boot/ +cp -fdpR $NEW/boot/* $TEMP.z/boot/ +cp -fdpR $MP/doc/* $TEMP.z/doc/ +cp -fdpR $NEW/doc/* $TEMP.z/doc/ +cp -fdpR $MP/config/* $TEMP.z/config/ +cp -fdpR $NEW/config/* $TEMP.z/config/ +cp -fdp $MP/* $TEMP.z/ +cp -fdp $NEW/* $TEMP.z/ +# + mkisofs -b boot/isolinux.bin -c boot/boot.cat \ -no-emul-boot -boot-load-size 4 -boot-info-table \ -o $ISO \ @@ -122,9 +134,10 @@ -P "Devil Linux Custom CD" \ -A "Devil-Linux cv$DL_VERSION" \ -iso-level 2 \ - -quiet $TEMP + -quiet -z $TEMP.z echo umount $MP || echo "Cannot unmount $MP" rm -fr $TEMP +rm -fr $TEMP.z echo Your new ISO image has been created: $ISO |