# HG changeset patch # User Pascal Bellard # Date 1408974946 -7200 # Node ID a4483ebf3c6f01215609507a344b3c9e18bd825b # Parent 23bc2f20b255b392442e95012e8fcb022883c2a4 tazlito: no md5sum for vmlinuz* (non-rockridge collisions and already checked with bzImage*) diff -r 23bc2f20b255 -r a4483ebf3c6f tazlito --- a/tazlito Thu Aug 07 20:12:52 2014 +0100 +++ b/tazlito Mon Aug 25 15:55:46 2014 +0200 @@ -220,7 +220,7 @@ { cd $2 echo -n "Computing md5..." - find * -type f ! -name md5sum -exec md5sum {} \; > md5sum + find * -type f ! -name md5sum ! -name 'vmlinuz*' -exec md5sum {} \; > md5sum sed -i -e '/ boot\/isolinux\/isolinux.bin$/d' \ -e '/ boot\/isolinux\/boot.cat$/d' md5sum status @@ -238,7 +238,7 @@ genisoimage -R -o $1 -b boot/isolinux/isolinux.bin \ -c boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 \ -V "$VOLUM_NAME" -p "$PREPARED" -input-charset iso8859-1 \ - -boot-info-table $2 + -copyright README -P "www.slitaz.org" -boot-info-table $2 if [ -x /usr/bin/isohybrid ]; then echo -n "Creating hybrid ISO..." /usr/bin/isohybrid $1 -entry 2 2> /dev/null @@ -2342,7 +2342,8 @@ echo "Generating ISO image..." genisoimage -R -o $ISO_NAME.iso -b boot/isolinux/isolinux.bin \ -c boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 \ - -V "SliTaz" -input-charset iso8859-1 -boot-info-table $ROOTCD + -V "SliTaz" -p "$(id -un)" -input-charset iso8859-1 \ + -P "$(hostname)" -boot-info-table $ROOTCD if [ -x /usr/bin/isohybrid ]; then echo -n "Creating hybrid ISO..." /usr/bin/isohybrid $ISO_NAME.iso -entry 2 2> /dev/null