tazlito rev 94

Fix typos
author Paul Issott <paul@slitaz.org>
date Wed Mar 11 16:41:15 2009 +0000 (2009-03-11)
parents 31c1dadc0a0a
children 27d126171d7f
files tazlito
line diff
     1.1 --- a/tazlito	Thu Mar 05 20:00:37 2009 +0100
     1.2 +++ b/tazlito	Wed Mar 11 16:41:15 2009 +0000
     1.3 @@ -15,7 +15,7 @@
     1.4  VERSION=1.9
     1.5  
     1.6  # Tazlito configuration variables to be shorter
     1.7 -# and to use words rater than numbers.
     1.8 +# and to use words rather than numbers.
     1.9  COMMAND=$1
    1.10  LIST_NAME=$2
    1.11  TMP_DIR=/tmp/tazlito-$$-$RANDOM
    1.12 @@ -85,7 +85,7 @@
    1.13    get-flavor      Get a flavor's list of packages.
    1.14    check-list      Check a distro-packages.list for updates.
    1.15    extract-distro  Extract an ISO to a directory and rebuild LiveCD tree.
    1.16 -  gen-distro      Generated a Live distro and ISO from a list of packages.
    1.17 +  gen-distro      Generate a Live distro and ISO from a list of packages.
    1.18    clean-distro    Remove all files generated by gen-distro.
    1.19    check-distro    Help to check if distro is ready to release.
    1.20    burn-iso        Burn ISO image to a cdrom using Wodim.\n"
    1.21 @@ -268,7 +268,7 @@
    1.22  	genisohooks final
    1.23  }
    1.24  
    1.25 -# Generate a new initramfs from the root file system.
    1.26 +# Generate a new initramfs from the root filesystem.
    1.27  gen_initramfs()
    1.28  {
    1.29  	# Just in case CTRL+c
    1.30 @@ -379,7 +379,7 @@
    1.31  ===============================================================================
    1.32  Config file         : $CONFIG_FILE
    1.33  ISO name            : $ISO_NAME.iso
    1.34 -Volum name          : $VOLUM_NAME
    1.35 +Volume name         : $VOLUM_NAME
    1.36  Prepared            : $PREPARED
    1.37  Packages repository : $PACKAGES_REPOSITORY
    1.38  Distro directory    : $DISTRO"
    1.39 @@ -443,7 +443,7 @@
    1.40  		echo ""
    1.41  		;;
    1.42  	gen-iso)
    1.43 -		# Simply generated a new iso.
    1.44 +		# Simply generate a new iso.
    1.45  		#
    1.46  		check_root
    1.47  		verify_rootcd
    1.48 @@ -451,7 +451,7 @@
    1.49  		distro_stats
    1.50  		;;
    1.51  	gen-initiso)
    1.52 -		# Simply generated a new initramfs with a new iso.
    1.53 +		# Simply generate a new initramfs with a new iso.
    1.54  		#
    1.55  		check_root
    1.56  		verify_rootcd
    1.57 @@ -477,7 +477,7 @@
    1.58  		fi
    1.59  		# Exit if existing distro is found.
    1.60  		if [ -d "$TARGET/rootfs" ] ; then
    1.61 -			echo -e "\nA rootfs exist in : $TARGET"
    1.62 +			echo -e "\nA rootfs exists in : $TARGET"
    1.63  			echo -e "Please clean the distro tree or change directory path.\n"
    1.64  			exit 0
    1.65  		fi
    1.66 @@ -528,7 +528,7 @@
    1.67  		echo -n "Copying the rootfs..."
    1.68  		cp $TMP_DIR/boot/rootfs.?z $TARGET/rootcd/boot
    1.69  		status
    1.70 -		# Exract initramfs.
    1.71 +		# Extract initramfs.
    1.72  		cd $TARGET/rootfs
    1.73  		echo -n "Extracting the rootfs... "
    1.74  		( zcat ../rootcd/boot/rootfs.gz 2>/dev/null || \
    1.75 @@ -631,7 +631,7 @@
    1.76  		   /etc/tazlito/distro-packages.list 2> /dev/null
    1.77  		;;
    1.78  	gen-flavor)
    1.79 -		# Generate a new flavor from the last iso image generation.
    1.80 +		# Generate a new flavor from the last iso image generated.
    1.81  		FLAVOR=$2
    1.82  		echo ""
    1.83  		echo -e "\033[1mFlavor generation\033[0m"
    1.84 @@ -738,7 +738,7 @@
    1.85  		#
    1.86  		check_root
    1.87  		if [ -d $ROOTFS ] ; then
    1.88 -			echo -e "\nA rootfs exist in : $DISTRO"
    1.89 +			echo -e "\nA rootfs exists in : $DISTRO"
    1.90  			echo -e "Please clean the distro tree or change directory path.\n"
    1.91  			exit 0
    1.92  		fi
    1.93 @@ -774,7 +774,7 @@
    1.94  		fi
    1.95  		# Exit if no list name.
    1.96  		if [ ! -f "$LIST_NAME" ]; then
    1.97 -			echo -e "\nNo packages list found or specified. Please read the doc.\n"
    1.98 +			echo -e "\nNo packages list found or specified. Please read the docs.\n"
    1.99  			exit 0
   1.100  		fi
   1.101  		# Start generation.