#!/bin/sh
#
#
#
. ./file_image_functions
#
if [ -z "$1" ]
then
    echo "$0 DISK_IMAGE_FILE"
else
    file_image_fdisk "$1"
fi
#
