Browse Source

create a target file with qemu

Waldemar Brodkorb 11 years ago
parent
commit
0acb2fc101
1 changed files with 2 additions and 4 deletions
  1. 2 4
      scripts/create.sh

+ 2 - 4
scripts/create.sh

@@ -142,16 +142,14 @@ done
 tgt=$1
 src=$2
 
-if [[ ! -b $tgt ]]; then
-	print -u2 "'$tgt' is not a block device, exiting"
-	exit 1
-fi
 if [[ ! -f $src ]]; then
 	print -u2 "'$src' is not a file, exiting"
 	exit 1
 fi
 (( quiet )) || print "Installing $src on $tgt."
 
+qemu-img create -f raw $tgt 524288k
+
 case $ostype {
 (DragonFly|*BSD*)
 	basedev=${tgt%c}