From: <ale...@us...> - 2008-03-19 23:13:00
|
Revision: 2619 http://morphix.svn.sourceforge.net/morphix/?rev=2619&view=rev Author: alextreme Date: 2008-03-19 16:12:50 -0700 (Wed, 19 Mar 2008) Log Message: ----------- * updating make-iso to use genisoimage and fix old arguments (fixes #1919524) Modified Paths: -------------- trunk/morph-scripts/makeiso.sh Modified: trunk/morph-scripts/makeiso.sh =================================================================== --- trunk/morph-scripts/makeiso.sh 2008-03-14 13:45:18 UTC (rev 2618) +++ trunk/morph-scripts/makeiso.sh 2008-03-19 23:12:50 UTC (rev 2619) @@ -21,11 +21,11 @@ find $SRC/ -type f -print0 | xargs -0 md5sum > $SRC/md5sums if [ -e "$SRC/base/boot.img" ]; then - mkisofs -pad -l -r -J -v -V "$LABEL" -b base/boot.img -c base/boot.cat -hide -rr -moved -o $DEST $SRC + genisoimage -pad -l -r -J -v -V "$LABEL" -b base/boot.img -c base/boot.cat -hide-rr-moved -o $DEST $SRC elif [ -e "$SRC/boot/grub/iso9660_stage1_5" ]; then - mkisofs -pad -l -r -J -v -V "$LABEL" -b boot/grub/iso9660_stage1_5 -c base/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -hide -rr -moved -o $DEST $SRC + genisoimage -pad -l -r -J -v -V "$LABEL" -b boot/grub/iso9660_stage1_5 -c base/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -hide-rr-moved -o $DEST $SRC elif [ -e "%SRC/base/isolinux.bin" ]; then - mkisofs -pad -l -r -J -v -V "$LABEL" -b base/isolinux/isolinux.bin -c base/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -hide -rr -moved -o $DEST $SRC + genisoimage -pad -l -r -J -v -V "$LABEL" -b base/isolinux/isolinux.bin -c base/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -hide-rr-moved -o $DEST $SRC else echo "Error: unable to find bootloader in $SRC. Either update this script, or make sure you have the right directory as src" fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |