1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# 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
}
|