# vim: filetype=sh

usage_and_exit()
{
    echo "Usage: debootstick [options] <fs_tree_dir> <out_image_path>" >&2
    exit $1
}

describe_os_support()
{
    cat << EOF
This version of debootstick was tested successfully with the following kinds of
chroot-environments:
* OS for Raspberry Pi:
    - Raspbian stretch
* OS for 32 or 64 bit PCs:
    - Debian 10 (buster) as of october 3, 2018
    - Debian 9 (stretch)
    - Debian 8 (jessie)
    - Ubuntu 18.04 LTS (bionic)
    - Ubuntu 16.04 LTS (xenial)
    - Ubuntu 14.04 LTS (trusty)
EOF
}
