# 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:
    - Raspberry Pi OS (formerly "rasbian") buster
* OS for 32 or 64 bit PCs:
    - Debian 11 (bullseye) as of november 2, 2020
    - Debian 10 (buster)
    - Ubuntu 20.10 (groovy)
    - Ubuntu 20.04 LTS (focal)
    - Ubuntu 18.04 LTS (bionic)
EOF
}
