# 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") bullseye
* OS for 32 or 64 bit PCs:
    - Debian 12 (bookworm) as of october 20, 2022
    - Debian 11 (bullseye)
    - Ubuntu 22.10 (kinetic)
    - Ubuntu 22.04 LTS (jammy)
EOF
}
