#!/bin/sh
#
#
#
. ./file_image_functions
#
if [ -z "$1" ] || [ -z "$2" ] || [ "$2" -lt "1" ] \
  || [ "$2" -gt "4" ]
then
    echo "Usage:"
    echo ""
    echo "$0 DISK_IMAGE_FILE PART_NUMBER"
    echo ""
    echo "The partition number must be between"
    echo " 1 and 4."
    echo "No extended partitions are handled!"
else
    file_image_partition_syslinux "$1" "$2"
fi
#
