tazusb rev 48

Tiny edits
author Paul Issott <paul@slitaz.org>
date Sun Jan 10 12:34:30 2010 +0000 (2010-01-10)
parents 054c0ab2988a
children adcdabe13977
files tazusb
line diff
     1.1 --- a/tazusb	Thu Nov 19 13:25:40 2009 +0100
     1.2 +++ b/tazusb	Sun Jan 10 12:34:30 2010 +0000
     1.3 @@ -150,7 +150,7 @@
     1.4  {
     1.5  	echo -n "\
     1.6  Please specify the filesystem type to $COMMAND. 
     1.7 -Available format is ext3(default), ext2 or fat32. 
     1.8 +Available formats are ext3(default), ext2 or fat32. 
     1.9  Press enter to keep the default value.
    1.10  
    1.11  File system type : "; read anser
    1.12 @@ -170,7 +170,7 @@
    1.13  	FS=$(echo $fs_type | tr [A-Z] [a-z])
    1.14  	case "$FS" in
    1.15  		ext3|ext2)
    1.16 -			echo -e "\nProcessiong..."
    1.17 +			echo -e "\nProcessing..."
    1.18  			echo "Label  : $label"
    1.19  			echo "Mkfs   : mkfs.$FS -L \"$label\" $DEVICE"
    1.20  			echo "" && sleep 2
    1.21 @@ -178,13 +178,13 @@
    1.22  			;;
    1.23  		[Ff]at32)
    1.24  			if [ -x /sbin/mkdosfs ];then
    1.25 -				echo -e "\nProcessiong..."
    1.26 +				echo -e "\nProcessing..."
    1.27  				echo "Label  : $label"
    1.28  				echo "Mkfs   : mkdosfs -F 32 -n \"$label\" $DEVICE"
    1.29  				echo "" && sleep 2
    1.30  				mkdosfs -F 32 -n "$label" $DEVICE  
    1.31  			else
    1.32 -				echo -ne "Can't find mkdosfs tool.\nWould you like to  install dosfstools from repository [y/N] ? "; read answer
    1.33 +				echo -ne "Can't find mkdosfs tool.\nWould you like to install dosfstools from repository [y/N] ? "; read answer
    1.34  				case $answer in
    1.35  					y|Y)
    1.36  						yes | tazpkg get-install dosfstools  && make_fs fat32;;
    1.37 @@ -194,7 +194,7 @@
    1.38  			fi
    1.39  			;;
    1.40  		*)
    1.41 -			echo "Sorry. Filesystem $FS not supported."
    1.42 +			echo "Sorry. Filesystem $FS is not supported."
    1.43  			exit 
    1.44  	esac
    1.45  }
    1.46 @@ -266,7 +266,7 @@
    1.47  }
    1.48  
    1.49  
    1.50 -# All needed files are in the boot direcory of the cdrom.
    1.51 +# All needed files are in the boot directory of the cdrom.
    1.52  copy_cdrom_files()
    1.53  {
    1.54  	echo -n "Copying needed files from cdrom..."