#!/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