slitaz-arm diff sat @ rev 104

Bunch of modif, use dillo and some fltk apps in next desktop release, better JWM menu, PiTFT info
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 18 02:46:52 2014 +0200 (2014-04-18)
parents c6d3db386d89
children 464a84405363
line diff
     1.1 --- a/sat	Sat Mar 15 18:46:41 2014 +0100
     1.2 +++ b/sat	Fri Apr 18 02:46:52 2014 +0200
     1.3 @@ -39,7 +39,6 @@
     1.4    flavors    List and give info about flavors
     1.5    ckpkgs     Distro packages dependencies check
     1.6    clean      Clean up the work directory
     1.7 -  vdisk      Create a virtual disk to be used by Qemu
     1.8    emu        Emulate the distro with qemu-system-arm
     1.9    mirror     Download or sync the SliTaz ARM mirror
    1.10  
    1.11 @@ -330,25 +329,6 @@
    1.12  			rm -rf $work/spk && status
    1.13  		fi ;;
    1.14  	
    1.15 -	vdisk)
    1.16 -		# Lets use and HD in Qemu to store files|packages|whatever
    1.17 -		vdisk="vdisk.img"
    1.18 -		: ${size=50}
    1.19 -		newline
    1.20 -		echo "Creating virtual disk: $vdisk"
    1.21 -		cd $work
    1.22 -		dd if=/dev/zero of=$vdisk bs=1M count=$size
    1.23 -		# Partition
    1.24 -		echo "Creating a partition with: fdisk"
    1.25 -		fdisk ${vdisk} >/dev/null << EOT
    1.26 -o
    1.27 -n
    1.28 -p
    1.29 -1
    1.30 -w
    1.31 -EOT
    1.32 -		newline ;;
    1.33 -	
    1.34  	emu)
    1.35  		cd $work
    1.36  		[ -f "vdisk.img" ] && opts="-hda vdisk.img"