tazlito rev 33

Putting message in the right place when copyinog syslinux,extlinux and GRUB files
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jan 16 14:45:48 2008 +0100 (2008-01-16)
parents bda5158e6335
children 2ab6a01ccd99
files tazlito
line diff
     1.1 --- a/tazlito	Mon Jan 14 22:35:35 2008 +0100
     1.2 +++ b/tazlito	Wed Jan 16 14:45:48 2008 +0100
     1.3 @@ -228,7 +228,7 @@
     1.4  	# Use lzma if installed
     1.5  	if [ -x /usr/bin/lzma -a "$COMPRESSION" != "gzip" ]; then
     1.6  		echo -n "Generating lzma'ed initramfs... "
     1.7 -		find . -print | cpio -o -H newc | lzma e -si -so -d26 > $DISTRO/$INITRAMFS
     1.8 +		find . -print | cpio -o -H newc | lzma e -si -so > $DISTRO/$INITRAMFS
     1.9  	else
    1.10  		echo -n "Generating gziped initramfs... "
    1.11  		find . -print | cpio -o -H newc | gzip -9 > $DISTRO/$INITRAMFS
    1.12 @@ -432,18 +432,18 @@
    1.13  		echo -n "Copying isolinux files..."
    1.14  		cp -a $TMP_DIR/boot/isolinux $TARGET/rootcd/boot
    1.15  		status
    1.16 -		echo -n "Copying syslinux files..."
    1.17  		if [ -d $TMP_DIR/boot/syslinux ]; then
    1.18 +			echo -n "Copying syslinux files..."
    1.19  			cp -a $TMP_DIR/boot/syslinux $TARGET/rootcd/boot
    1.20  			status
    1.21  		fi
    1.22 -		echo -n "Copying extlinux files..."
    1.23  		if [ -d $TMP_DIR/boot/extlinux ]; then
    1.24 +			echo -n "Copying extlinux files..."
    1.25  			cp -a $TMP_DIR/boot/extlinux $TARGET/rootcd/boot
    1.26  			status
    1.27  		fi
    1.28 -		echo -n "Copying GRUB files..."
    1.29  		if [ -d $TMP_DIR/boot/grub ]; then
    1.30 +			echo -n "Copying GRUB files..."
    1.31  			cp -a $TMP_DIR/boot/grub $TARGET/rootcd/boot
    1.32  			status
    1.33  		fi