tazwok rev 55

Give status when creatin fs (busybox cpio)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 18 00:18:15 2008 +0200 (2008-04-18)
parents c03d1412e69e
children 5f6710a48c99
files tazwok
line diff
     1.1 --- a/tazwok	Sat Mar 22 00:00:33 2008 +0100
     1.2 +++ b/tazwok	Fri Apr 18 00:18:15 2008 +0200
     1.3 @@ -466,9 +466,11 @@
     1.4  	# Build cpio archives. Find, cpio and gzip the fs, finish by
     1.5  	# removing the fs tree.
     1.6  	echo -n "Compressing the fs... "
     1.7 -	find fs -print | cpio -o -H newc | gzip > fs.cpio.gz && rm -rf fs
     1.8 +	find fs -print | busybox cpio -o -H newc | gzip > fs.cpio.gz 
     1.9 +	status && rm -rf fs
    1.10  	echo -n "Creating full cpio archive... "
    1.11 -	find . -print | cpio -o -H newc > $PACKAGES_REPOSITORY/$PACKAGE-$VERSION.tazpkg
    1.12 +	find . -print | busybox cpio -o -H newc > $PACKAGES_REPOSITORY/$PACKAGE-$VERSION.tazpkg
    1.13 +	status
    1.14  	# Restore package tree in case we want to browse it.
    1.15  	echo -n "Restoring original package tree... "
    1.16  	zcat fs.cpio.gz | cpio -id