cookutils diff cross @ rev 382

Edit cross files
author Paul Issott <paul@slitaz.org>
date Sat May 12 22:03:46 2012 +0100 (2012-05-12)
parents 9af42268847d
children 45feb8246d3c
line diff
     1.1 --- a/cross	Fri May 11 14:43:34 2012 +0200
     1.2 +++ b/cross	Sat May 12 22:03:46 2012 +0100
     1.3 @@ -21,7 +21,7 @@
     1.4  
     1.5  Commands:
     1.6    howto           Man alike and howto
     1.7 -  info            Dispaly cross-tools info
     1.8 +  info            Display cross-tools info
     1.9    testsuite       Execute a small testsuite
    1.10    check-env       Check build host tools
    1.11    download        Download necessary sources
    1.12 @@ -113,7 +113,7 @@
    1.13  	make all-gcc all-target-libgcc || exit 1
    1.14  	make install-gcc install-target-libgcc
    1.15  	cd $PREFIX/lib/gcc/$TARGET/$GCC_VERSION
    1.16 -	echo "Creating symlink forstatic libgcc: libgcc_eh.a"
    1.17 +	echo "Creating symlink for static libgcc: libgcc_eh.a"
    1.18  	rm -f libgcc_eh.a && ln -s libgcc.a libgcc_eh.a
    1.19  }
    1.20  
    1.21 @@ -182,7 +182,7 @@
    1.22  	make install
    1.23  }
    1.24  
    1.25 -# Build Busybox to we can create prebuild tiny rootfs image and boot
    1.26 +# Build Busybox to we can create prebuilt tiny rootfs image and boot
    1.27  # from NFS ?
    1.28  cross_busybox() {
    1.29  	echo "Extracting: busybox-$BUSYBOX_VERSION.tar.bz2"
    1.30 @@ -207,12 +207,12 @@
    1.31  	info)
    1.32  		init_compile
    1.33  		CC=${TARGET}-gcc
    1.34 -		echo -e "\nCross Toolchain iformation" && separator
    1.35 +		echo -e "\nCross Toolchain information" && separator
    1.36  		[ "$config" ] && echo "Config file     : $config"
    1.37  		cat << EOT
    1.38  Target arch     : $ARCH
    1.39  C Compiler      : $CC
    1.40 -Additonal path  : /usr/cross/$ARCH/bin
    1.41 +Additional path : /usr/cross/$ARCH/bin
    1.42  Build directory : $WORK
    1.43  EOT
    1.44  		separator && echo ""
    1.45 @@ -246,7 +246,7 @@
    1.46  	download)
    1.47  		download_src ;;
    1.48  	clean)
    1.49 -		echo -n "Remove all source files..."
    1.50 +		echo -n "Removing all source files..."
    1.51  		rm -rf $WORK/source/* && status
    1.52  		[ "$log" ] && rm -f $WORK/log/*.log
    1.53  		echo "To clean chroot: rm -rf $PREFIX" ;;