Index: create-tmp-image
===================================================================
--- create-tmp-image (nonexistent)
+++ create-tmp-image (revision 5)
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+image=$1
+
+if [ "x${image}" = "x" ] ; then
+ exit 1
+fi
+
+#
+# +8M
+#
+dd if=/dev/zero of=${image} bs=512 count=18432 1>/dev/null 2>/dev/null
+/sbin/fdisk --wipe=always --wipe-partition=always ${image} 1>/dev/null 2>/dev/null <<EOF
+n
+p
+1
+2048
+18431
+t
+83
+w
+EOF
Property changes on: create-tmp-image
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property