# HG changeset patch # User Stanislas Leduc # Date 1710420331 0 # Node ID a8b1ac48fc8d73df1e0a39ae2177ac138e6920e0 # Parent b040c8f63a2939f3e70253042b295cd66ec79538 Fix issue efi for tazlito on current diff -r b040c8f63a29 -r a8b1ac48fc8d tazlito/receipt --- a/tazlito/receipt Wed Mar 13 08:23:59 2024 +0000 +++ b/tazlito/receipt Thu Mar 14 12:45:31 2024 +0000 @@ -30,6 +30,9 @@ # Patch for support pae kernel patch -p1 < $stuff/support-kernel-pae.patch + # Fix mount iso image bug + patch -p1 < $stuff/fix-mountiso.patch + sed -i "s/^VERSION=.*/VERSION=$VERSION/" tazlito make DESTDIR=$DESTDIR VERSION=$VERSION install } diff -r b040c8f63a29 -r a8b1ac48fc8d tazlito/stuff/fix-mountiso.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tazlito/stuff/fix-mountiso.patch Thu Mar 14 12:45:31 2024 +0000 @@ -0,0 +1,11 @@ +--- a/tazlito ++++ b/tazlito +@@ -711,7 +711,7 @@ + dd if=/dev/zero bs=2k count=16 >> $1 2> /dev/null + + mkdir /tmp/mnt$$ +- mount -o loop,ro $1 /tmp/mnt$$ ++ mount -t iso9660 -o loop,ro $1 /tmp/mnt$$ + fixup_uefi_part $1 /tmp/mnt$$ + for i in boot/isolinux/isolinux.bin boot/isolinux/boot.cat \ + ${uefi:+$efi_img} ; do